tge/example/demo/client/ui/features/features_main.gui
2017-04-17 06:17:10 -06:00

47 lines
1.2 KiB
Plaintext
Executable File

//--- OBJECT WRITE BEGIN ---
new GuiControl(features_main) {
profile = "GuiModelessDialogProfile";
horizSizing = "right";
vertSizing = "bottom";
position = "0 0";
extent = "800 600";
minExtent = "8 2";
visible = "1";
helpTag = "0";
// title = "Torque Game Engine 1.5 Features";
new GuiScrollCtrl() {
profile = "GuiBevelLoweredProfile";
horizSizing = "center";
vertSizing = "height";
position = "35 35";
extent = "735 533";
minExtent = "8 8";
visible = "1";
helpTag = "0";
willFirstRespond = "1";
hScrollBar = "alwaysOff";
vScrollBar = "alwaysOn";
constantThumbHeight = "0";
childMargin = "0 0";
new GuiMLTextCtrl() {
profile = "GuiMLTextProfile";
horizSizing = "right";
vertSizing = "height";
position = "0 0";
extent = "710 525";
minExtent = "8 2";
visible = "1";
helpTag = "0";
lineSpacing = "2";
allowColorChars = "0";
maxChars = "-1";
text = "main";
fileName = "demo/client/ui/features/features_main.txt";
};
};
};
//--- OBJECT WRITE END ---