* Fixed a few issues related to the Texture2D support/export.
This commit is contained in:
sinaioutlander
2020-10-11 20:07:23 +11:00
parent dd6cce1df1
commit b41f7211e5
11 changed files with 313 additions and 152 deletions

View File

@ -37,6 +37,10 @@ namespace Explorer.CacheObject
{
interactive = new InteractiveTexture2D();
}
else if (valueType == typeof(Texture))
{
interactive = new InteractiveTexture();
}
else if (valueType == typeof(Sprite))
{
interactive = new InteractiveSprite();