mirror of
https://github.com/Jusctsch5/ironsphererpg.git
synced 2026-01-19 19:44:45 +00:00
Taking everything obtained from http://ironsphererpg2.webs.com/ and dumping it in a git repo
122 lines
3 KiB
Plaintext
122 lines
3 KiB
Plaintext
//--- OBJECT WRITE BEGIN ---
|
|
new GuiControl(TSShowMiscDlg) {
|
|
profile = "GuiDefaultProfile";
|
|
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 ---
|