LagMasterSam
11-27-2007, 06:54 PM
I know in UT2004 it was possible to have nested dynamic arrays that were configurable in the editor. For example...
class TTVolume extends Volume
placeable;
var(Actions) array< class<TTVolumeActionGroup> > ActionGroups;
class TTVolumeActionGroup extends Object
abstract;
var(Actions) array< class<TTVolumeAction> > Actions;
I have no problem adding a TTVolumeActionGroup to the ActionGroups array within TTVolume. However, there doesn't seem to be an option in the editor for adding a TTVolumeAction to an ActionGroup within the ActionGroups array.
EDIT - Fixed
I needed to add editinline and editinlinenew...
class TTVolume extends Volume
placeable;
var() editinline array< class<TTVolumeActionGroup> > ActionGroups;
class TTVolumeActionGroup extends Object
hidecategories(Object)
editinlinenew
abstract;
var(Actions) editinline array< class<TTVolumeAction> > Actions;
class TTVolumeAction extends Object
hidecategories(Object)
editinlinenew
abstract;
class TTVolume extends Volume
placeable;
var(Actions) array< class<TTVolumeActionGroup> > ActionGroups;
class TTVolumeActionGroup extends Object
abstract;
var(Actions) array< class<TTVolumeAction> > Actions;
I have no problem adding a TTVolumeActionGroup to the ActionGroups array within TTVolume. However, there doesn't seem to be an option in the editor for adding a TTVolumeAction to an ActionGroup within the ActionGroups array.
EDIT - Fixed
I needed to add editinline and editinlinenew...
class TTVolume extends Volume
placeable;
var() editinline array< class<TTVolumeActionGroup> > ActionGroups;
class TTVolumeActionGroup extends Object
hidecategories(Object)
editinlinenew
abstract;
var(Actions) editinline array< class<TTVolumeAction> > Actions;
class TTVolumeAction extends Object
hidecategories(Object)
editinlinenew
abstract;