mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-24 17:13:54 +00:00
Adds a notes object that only displays in the editor, useful for when working on maps.
This commit is contained in:
parent
fb7ae70676
commit
4ffe6d2bb7
5 changed files with 304 additions and 0 deletions
|
|
@ -1070,6 +1070,11 @@ function ObjectBuilderGui::buildObserverDropPoint(%this)
|
|||
%this.process();
|
||||
}
|
||||
|
||||
function ObjectBuilderGui::buildNotesObject(%this)
|
||||
{
|
||||
%this.objectClassName = "NotesObject";
|
||||
%this.process();
|
||||
}
|
||||
//------------------------------------------------------------------------------
|
||||
// System
|
||||
//------------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -93,6 +93,7 @@ function EWCreatorWindow::init( %this )
|
|||
%this.registerMissionObject("NavMesh", "Navigation mesh");
|
||||
%this.registerMissionObject("NavPath", "Path");
|
||||
%this.registerMissionObject( "Entity", "Entity" );
|
||||
%this.registerMissionObject( "NotesObject", "Note" );
|
||||
|
||||
%this.endGroup();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue