Implement .NET 7 runtime support and bindings generation
This commit is contained in:
@@ -1277,6 +1277,7 @@ bool Level::SaveAllScenes()
|
||||
|
||||
void Level::SaveAllScenesAsync()
|
||||
{
|
||||
SCRIPTING_EXPORT("FlaxEngine.Level::Internal_SaveAllScenesAsync")
|
||||
ScopeLock lock(_sceneActionsLocker);
|
||||
for (int32 i = 0; i < Scenes.Count(); i++)
|
||||
_sceneActions.Enqueue(New<SaveSceneAction>(Scenes[i]));
|
||||
@@ -1381,6 +1382,7 @@ bool Level::UnloadAllScenes()
|
||||
|
||||
void Level::UnloadAllScenesAsync()
|
||||
{
|
||||
SCRIPTING_EXPORT("FlaxEngine.Level::Internal_UnloadAllScenesAsync")
|
||||
ScopeLock lock(_sceneActionsLocker);
|
||||
_sceneActions.Enqueue(New<UnloadScenesAction>());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user