mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 19:53:48 +00:00
fill in the validated variables
This commit is contained in:
parent
fa760fa746
commit
f633ef3a3d
184 changed files with 1359 additions and 1216 deletions
|
|
@ -118,14 +118,14 @@ void GuiSplitContainer::initPersistFields()
|
|||
|
||||
addField( "orientation", TYPEID< Orientation >(), Offset( mOrientation, GuiSplitContainer),
|
||||
"Whether to split between top and bottom (horizontal) or between left and right (vertical)." );
|
||||
addField( "splitterSize", TypeS32, Offset( mSplitterSize, GuiSplitContainer),
|
||||
addFieldV( "splitterSize", TypeRangedS32, Offset( mSplitterSize, GuiSplitContainer), &CommonValidators::PositiveInt,
|
||||
"Width of the splitter bar between the two sides. Default is 2." );
|
||||
addField( "splitPoint", TypePoint2I, Offset( mSplitPoint, GuiSplitContainer),
|
||||
"Point on control through which the splitter goes.\n\n"
|
||||
"Changed relatively if size of control changes." );
|
||||
addField( "fixedPanel", TYPEID< FixedPanel >(), Offset( mFixedPanel, GuiSplitContainer),
|
||||
"Which (if any) side of the splitter to keep at a fixed size." );
|
||||
addField( "fixedSize", TypeS32, Offset( mFixedPanelSize, GuiSplitContainer),
|
||||
addFieldV( "fixedSize", TypeRangedS32, Offset( mFixedPanelSize, GuiSplitContainer), &CommonValidators::PositiveInt,
|
||||
"Width of the fixed panel specified by #fixedPanel (if any)." );
|
||||
|
||||
endGroup( "Splitter" );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue