Fix loading cube texture import settings

This commit is contained in:
Wojtek Figat
2026-03-06 11:10:58 +01:00
parent 341dc08f7c
commit b8fcb51aa3

View File

@@ -19,7 +19,7 @@
bool IsSpriteAtlasOrTexture(const String& typeName)
{
return typeName == Texture::TypeName || typeName == SpriteAtlas::TypeName;
return typeName == Texture::TypeName || typeName == CubeTexture::TypeName || typeName == SpriteAtlas::TypeName;
}
bool ImportTexture::TryGetImportOptions(const StringView& path, Options& options)