Fix crash on Android when loading mesh with SDF data

This commit is contained in:
Wojtek Figat
2025-10-07 18:09:18 +02:00
parent fc1451254d
commit f8dbf363b6
2 changed files with 8 additions and 0 deletions

View File

@@ -13,6 +13,11 @@ private:
FlaxStorage* _storage;
public:
FlaxStorageReference()
: _storage(nullptr)
{
}
FlaxStorageReference(FlaxStorage* storage)
: _storage(storage)
{