mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 08:04:40 +00:00
* Ensures the HDRBloom pref is properly set as part of the default settings
* Adds a few input names to the bitmap button lookup for the BaseUI logic * Properly defaults the current menu index for the GameMenu gui * Ensures that all editing actions for forest editor flag the editor/map as dirty for saving * Ensures editor messageBoxes are properly focused on popping up * Returns the newly created camera bookmark objects from their create functions
This commit is contained in:
parent
e630ab859a
commit
1bdaef9f82
6 changed files with 28 additions and 7 deletions
|
|
@ -749,6 +749,8 @@ function EditorGui::addCameraBookmark( %this, %name )
|
|||
|
||||
EWorldEditor.isDirty = true;
|
||||
EditorTree.buildVisibleTree(true);
|
||||
|
||||
return %obj;
|
||||
}
|
||||
|
||||
function EditorGui::removeCameraBookmark( %this, %name )
|
||||
|
|
@ -813,7 +815,9 @@ function EditorGui::addCameraBookmarkByGui( %this )
|
|||
break;
|
||||
}
|
||||
}
|
||||
EditorGui.addCameraBookmark( %name );
|
||||
%obj = EditorGui.addCameraBookmark( %name );
|
||||
|
||||
return %obj;
|
||||
}
|
||||
|
||||
function EditorGui::toggleCameraBookmarkWindow( %this )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue