mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-06 05:50:31 +00:00
lotsa fixes.
This commit is contained in:
parent
db047275f1
commit
6f7fdca87d
178 changed files with 230 additions and 245 deletions
|
|
@ -37,7 +37,7 @@ function inspectObject( %object )
|
|||
// Create a new object inspector window.
|
||||
exec( "./guiObjectInspector.ed.gui" );
|
||||
|
||||
if( !isObject( %guiContent) )
|
||||
if( !isObject( $guiContent) )
|
||||
{
|
||||
error( "InspectObject: failed to create GUI from 'guiObjectInspector.ed.gui'" );
|
||||
return;
|
||||
|
|
@ -45,9 +45,9 @@ function inspectObject( %object )
|
|||
|
||||
// Initialize the inspector.
|
||||
|
||||
%guiContent.init( %object );
|
||||
$guiContent.init( %object );
|
||||
|
||||
Canvas.getContent().add( %guiContent );
|
||||
Canvas.getContent().add( $guiContent );
|
||||
}
|
||||
|
||||
//=============================================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue