Torque3D/Templates/BaseGame/game/data/UI/guis/mainMenu.gui

125 lines
3.9 KiB
Text
Raw Normal View History

//--- OBJECT WRITE BEGIN ---
2021-05-04 21:18:15 -04:00
$guiContent = new GuiChunkedBitmapCtrl(MainMenuGui) {
BitmapAsset = "UI:backgrounddark_image";
extent = "1024 768";
minExtent = "8 8";
horizSizing = "width";
vertSizing = "height";
profile = "GuiDefaultProfile";
tooltipProfile = "GuiToolTipProfile";
isContainer = "1";
superClass = "UINavigation";
canSaveDynamicFields = "0";
2022-02-17 18:21:13 -06:00
new GuiBitmapCtrl(MainMenuAppLogo) {
2022-02-17 18:21:13 -06:00
BitmapAsset = "UI:Torque_3D_logo_alt_image";
position = "550 30";
extent = "443 139";
horizSizing = "left";
profile = "GuiDefaultProfile";
tooltipProfile = "GuiToolTipProfile";
canSaveDynamicFields = "1";
2022-02-17 18:21:13 -06:00
autoFitExtents = "0";
bitmapMode = "Stretched";
groupNum = "-1";
masked = "0";
navigationIndex = "-1";
2022-02-17 18:21:13 -06:00
useModifiers = "0";
useStates = "1";
};
new GuiControl(MainMenuButtonHolder) {
position = "143 711";
extent = "736 40";
horizSizing = "center";
vertSizing = "top";
2022-02-17 18:21:13 -06:00
profile = "GuiDefaultProfile";
tooltipProfile = "GuiToolTipProfile";
2022-02-17 18:21:13 -06:00
isContainer = "1";
class = "MenuInputButtonContainer";
2022-02-17 18:21:13 -06:00
new GuiIconButtonCtrl() {
BitmapAsset = "UI:Keyboard_Black_Return_image";
sizeIconToButton = "1";
makeIconSquare = "1";
textLocation = "Right";
text = "Go";
position = "11 0";
extent = "140 40";
2022-02-17 18:21:13 -06:00
profile = "GuiMenuButtonProfile";
command = "MainMenuButtonList.activate();";
2022-02-17 18:21:13 -06:00
tooltipProfile = "GuiToolTipProfile";
internalName = "button1";
class = "MenuInputButton";
2022-02-17 18:21:13 -06:00
};
new GuiIconButtonCtrl() {
BitmapAsset = "UI:Keyboard_Black_Return_image";
sizeIconToButton = "1";
makeIconSquare = "1";
textLocation = "Right";
text = "Go";
position = "155 0";
extent = "140 40";
2022-02-17 18:21:13 -06:00
profile = "GuiMenuButtonProfile";
command = "MainMenuButtonList.activate();";
2022-02-17 18:21:13 -06:00
tooltipProfile = "GuiToolTipProfile";
internalName = "button2";
class = "MenuInputButton";
2022-02-17 18:21:13 -06:00
};
new GuiIconButtonCtrl() {
BitmapAsset = "UI:Keyboard_Black_Return_image";
sizeIconToButton = "1";
makeIconSquare = "1";
textLocation = "Right";
text = "Go";
position = "299 0";
extent = "140 40";
2022-02-17 18:21:13 -06:00
profile = "GuiMenuButtonProfile";
command = "MainMenuButtonList.activate();";
2022-02-17 18:21:13 -06:00
tooltipProfile = "GuiToolTipProfile";
internalName = "button3";
class = "MenuInputButton";
2022-02-17 18:21:13 -06:00
};
new GuiIconButtonCtrl() {
BitmapAsset = "UI:Keyboard_Black_Return_image";
sizeIconToButton = "1";
makeIconSquare = "1";
textLocation = "Right";
text = "Go";
position = "443 0";
extent = "140 40";
2022-02-17 18:21:13 -06:00
profile = "GuiMenuButtonProfile";
command = "MainMenuButtonList.activate();";
2022-02-17 18:21:13 -06:00
tooltipProfile = "GuiToolTipProfile";
internalName = "button4";
class = "MenuInputButton";
};
new GuiIconButtonCtrl() {
2022-02-17 18:21:13 -06:00
BitmapAsset = "UI:Keyboard_Black_Return_image";
sizeIconToButton = "1";
makeIconSquare = "1";
textLocation = "Right";
text = "Go";
position = "587 0";
extent = "140 40";
profile = "GuiMenuButtonProfile";
command = "MainMenuButtonList.activate();";
tooltipProfile = "GuiToolTipProfile";
internalName = "button5";
class = "MenuInputButton";
};
};
2022-02-17 18:21:13 -06:00
new GuiInputCtrl(MainMenuInputHandler) {
sendAxisEvents = "1";
sendBreakEvents = "1";
ignoreMouseEvents = "1";
position = "-50 0";
extent = "10 10";
horizSizing = "width";
vertSizing = "height";
profile = "GuiInputCtrlProfile";
tooltipProfile = "GuiToolTipProfile";
class = "MenuInputHandler";
2022-02-17 18:21:13 -06:00
};
};
//--- OBJECT WRITE END ---