Adds a notes object that only displays in the editor, useful for when working on maps.

This commit is contained in:
Areloch 2020-08-17 16:41:59 -05:00
parent fb7ae70676
commit 4ffe6d2bb7
5 changed files with 304 additions and 0 deletions

View file

@ -1070,6 +1070,11 @@ function ObjectBuilderGui::buildObserverDropPoint(%this)
%this.process();
}
function ObjectBuilderGui::buildNotesObject(%this)
{
%this.objectClassName = "NotesObject";
%this.process();
}
//------------------------------------------------------------------------------
// System
//------------------------------------------------------------------------------

View file

@ -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();