128 lines
3.2 KiB
Plaintext
Executable File
128 lines
3.2 KiB
Plaintext
Executable File
//-----------------------------------------------------------------------------
|
|
// Torque Game Engine
|
|
//
|
|
// Copyright (c) 2001 GarageGames.Com
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//--- OBJECT WRITE BEGIN ---
|
|
new GuiControl(TSShowMiscDlg) {
|
|
profile = "GuiDialogProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "0 0";
|
|
extent = "640 480";
|
|
minExtent = "8 8";
|
|
visible = "True";
|
|
setFirstResponder = "False";
|
|
modal = "False";
|
|
helpTag = "0";
|
|
|
|
new GuiWindowCtrl() {
|
|
profile = "GuiWindowProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "140 220";
|
|
extent = "190 240";
|
|
minExtent = "8 8";
|
|
visible = "True";
|
|
setFirstResponder = "False";
|
|
modal = "True";
|
|
helpTag = "0";
|
|
text = "Misc";
|
|
resizeWidth = "True";
|
|
resizeHeight = "True";
|
|
canMove = "True";
|
|
canClose = "True";
|
|
canMinimize = "True";
|
|
canMaximize = "True";
|
|
minSize = "50 50";
|
|
closeCommand = "Canvas.popDialog(TSShowMiscDlg);";
|
|
|
|
new GuiButtonCtrl() {
|
|
profile = "GuiButtonProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "20 30";
|
|
extent = "150 20";
|
|
minExtent = "8 8";
|
|
visible = "True";
|
|
setFirstResponder = "False";
|
|
modal = "True";
|
|
command = "showToggleRoot();";
|
|
helpTag = "0";
|
|
text = "Toggle Animate Ground";
|
|
};
|
|
new GuiButtonCtrl() {
|
|
profile = "GuiButtonProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "20 65";
|
|
extent = "150 20";
|
|
minExtent = "8 8";
|
|
visible = "True";
|
|
setFirstResponder = "False";
|
|
modal = "True";
|
|
command = "showToggleStick();";
|
|
helpTag = "0";
|
|
text = "Toggle Stick To Ground";
|
|
};
|
|
new GuiButtonCtrl() {
|
|
profile = "GuiButtonProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "20 100";
|
|
extent = "150 20";
|
|
minExtent = "8 8";
|
|
visible = "True";
|
|
setFirstResponder = "False";
|
|
modal = "True";
|
|
command = "showSetKeyboard(true); showSetCamera(true);";
|
|
helpTag = "0";
|
|
text = "Keyboard Controls Shape";
|
|
};
|
|
new GuiButtonCtrl() {
|
|
profile = "GuiButtonProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "20 135";
|
|
extent = "150 20";
|
|
minExtent = "8 8";
|
|
visible = "True";
|
|
setFirstResponder = "False";
|
|
modal = "True";
|
|
command = "showSetKeyboard(false);";
|
|
helpTag = "0";
|
|
text = "Keyboard Controls Camera";
|
|
};
|
|
new GuiButtonCtrl() {
|
|
profile = "GuiButtonProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "20 170";
|
|
extent = "150 20";
|
|
minExtent = "8 8";
|
|
visible = "True";
|
|
setFirstResponder = "False";
|
|
modal = "True";
|
|
command = "showSetCamera(true); showSetKeyboard(false);";
|
|
helpTag = "0";
|
|
text = "Camera Orbits Shape";
|
|
};
|
|
new GuiButtonCtrl() {
|
|
profile = "GuiButtonProfile";
|
|
horizSizing = "right";
|
|
vertSizing = "bottom";
|
|
position = "20 205";
|
|
extent = "150 20";
|
|
minExtent = "8 8";
|
|
visible = "True";
|
|
setFirstResponder = "False";
|
|
modal = "True";
|
|
command = "showSetCamera(false); showSetKeyboard(false);";
|
|
helpTag = "0";
|
|
text = "Camera Moves Freely";
|
|
};
|
|
};
|
|
};
|
|
//--- OBJECT WRITE END ---
|