added ifdef check for editor

This commit is contained in:
SHAM-DP 2023-03-03 20:06:58 +08:00
parent 421016f4fc
commit 96d73ca626
2 changed files with 4 additions and 0 deletions

View File

@ -376,7 +376,9 @@ namespace SHADE
{ {
if(editor->LoadScene(asset->id)) if(editor->LoadScene(asset->id))
{ {
#ifdef SHEDITOR
editor->editorConfig->workingSceneID = asset->id; editor->editorConfig->workingSceneID = asset->id;
#endif
} }
} }
break; break;

View File

@ -592,8 +592,10 @@ namespace SHADE
{ {
//Load the scene //Load the scene
sceneToLoad = 0; sceneToLoad = 0;
#ifdef SHEDITOR
editorConfig->workingSceneID = assetID; editorConfig->workingSceneID = assetID;
SHConfigurationManager::SaveEditorConfig(); SHConfigurationManager::SaveEditorConfig();
#endif
SHSceneManager::RestartScene(assetID); SHSceneManager::RestartScene(assetID);
return true; return true;
} }