mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-24 17:13:54 +00:00
Implements interface buttons that react to input type and visually display keybinds Updates the T3D icon and splash screen
86 lines
2.3 KiB
Text
86 lines
2.3 KiB
Text
exec( "tools/gui/profiles.ed.cs" );
|
|
|
|
//--- OBJECT WRITE BEGIN ---
|
|
%guiContent = new GuiChunkedBitmapCtrl(MainMenuGui) {
|
|
bitmap = "data/ui/images/background-dark.png";
|
|
useVariable = "0";
|
|
tile = "0";
|
|
position = "0 0";
|
|
extent = "1024 768";
|
|
minExtent = "8 8";
|
|
horizSizing = "width";
|
|
vertSizing = "height";
|
|
profile = "GuiDefaultProfile";
|
|
visible = "1";
|
|
active = "1";
|
|
tooltipProfile = "GuiToolTipProfile";
|
|
hovertime = "1000";
|
|
isContainer = "1";
|
|
canSave = "1";
|
|
canSaveDynamicFields = "1";
|
|
Enabled = "1";
|
|
isDecoy = "0";
|
|
navigationIndex = "-1";
|
|
|
|
new GuiBitmapButtonCtrl(MainMenuAppLogo) {
|
|
bitmap = "data/ui/images/Torque-3D-logo";
|
|
bitmapMode = "Stretched";
|
|
autoFitExtents = "0";
|
|
useModifiers = "0";
|
|
useStates = "1";
|
|
masked = "0";
|
|
groupNum = "-1";
|
|
buttonType = "PushButton";
|
|
useMouseEvents = "0";
|
|
position = "550 30";
|
|
extent = "443 139";
|
|
minExtent = "8 2";
|
|
horizSizing = "left";
|
|
vertSizing = "bottom";
|
|
profile = "GuiDefaultProfile";
|
|
visible = "1";
|
|
active = "1";
|
|
command = "gotoWebPage(\"forums.torque3d.org\");";
|
|
tooltipProfile = "GuiToolTipProfile";
|
|
hovertime = "1000";
|
|
isContainer = "0";
|
|
canSave = "1";
|
|
canSaveDynamicFields = "1";
|
|
navigationIndex = "-1";
|
|
};
|
|
new GuiGameListMenuCtrl(MainMenuButtonList) {
|
|
class = "UIMenuButtonList";
|
|
debugRender = "0";
|
|
callbackOnA = "MainMenuButtonList.activateRow();";
|
|
callbackOnInputs = "1";
|
|
position = "292 103";
|
|
extent = "439 561";
|
|
minExtent = "8 2";
|
|
horizSizing = "center";
|
|
vertSizing = "center";
|
|
profile = "DefaultListMenuProfile";
|
|
visible = "1";
|
|
active = "1";
|
|
tooltipProfile = "GuiToolTipProfile";
|
|
hovertime = "1000";
|
|
isContainer = "0";
|
|
canSave = "1";
|
|
canSaveDynamicFields = "0";
|
|
};
|
|
new GuiControl(MainMenuButtonHolder) {
|
|
position = "190 652";
|
|
extent = "646 130";
|
|
minExtent = "8 2";
|
|
horizSizing = "center";
|
|
vertSizing = "top";
|
|
profile = "GuiDefaultProfile";
|
|
visible = "1";
|
|
active = "1";
|
|
tooltipProfile = "GuiToolTipProfile";
|
|
hovertime = "1000";
|
|
isContainer = "1";
|
|
canSave = "1";
|
|
canSaveDynamicFields = "0";
|
|
};
|
|
};
|
|
//--- OBJECT WRITE END ---
|