more torquescript template fixes.

This commit is contained in:
Jeff Hutchinson 2021-05-04 22:49:19 -04:00
parent 6f7fdca87d
commit b2bbd771f6
54 changed files with 122 additions and 99 deletions

View file

@ -59,6 +59,7 @@ function VControllerPropertyList::InspectObject( %this, %object )
}
%dataFieldCount = %object.getDataFieldCount();
%dataFieldList = "";
for ( %i = 0; %i < %dataFieldCount; %i++ )
{
// Add To List.

View file

@ -22,7 +22,7 @@ function VDirectorGroup::PopulateBuildStack( %this, %stack )
function VDirectorGroup::ResolveBuildStack( %this, %stack )
{
Parent::ResolveBuildStack( %this, %stack, %groupObject );
Parent::ResolveBuildStack( %this, %stack );
// Find the Track Toggle.
%directorTrackCheckBox = %stack.findObjectByInternalName( "DirectorTrackToggle", true );

View file

@ -62,7 +62,7 @@ function VSceneObjectGroup::PopulateBuildStack( %this, %stack )
function VSceneObjectGroup::ResolveBuildStack( %this, %stack )
{
Parent::ResolveBuildStack( %this, %stack, %groupObject );
Parent::ResolveBuildStack( %this, %stack );
// Fetch the Controller.
%controller = %this.getRoot();

View file

@ -31,7 +31,7 @@ function VSceneObjectGroup::PopulateBuildStack( %this, %stack )
function VSceneObjectGroup::ResolveBuildStack( %this, %stack )
{
VGroup::ResolveBuildStack( %this, %stack, %groupObject );
VGroup::ResolveBuildStack( %this, %stack );
// Fetch the Controller.
%controller = %this.getRoot();