mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 12:14:45 +00:00
fix class prototype rescale
This commit is contained in:
parent
a181f488b2
commit
dcc68e1d85
|
|
@ -20,6 +20,8 @@ $guiContent = new GuiControl(classPrototyping) {
|
|||
lockVertScroll = "1";
|
||||
position = "14 30";
|
||||
extent = "564 33";
|
||||
horizSizing = "relative";
|
||||
vertSizing = "relative";
|
||||
profile = "ToolsGuiScrollProfile";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
|
||||
|
|
@ -47,6 +49,8 @@ $guiContent = new GuiControl(classPrototyping) {
|
|||
new GuiScrollCtrl() {
|
||||
position = "19 80";
|
||||
extent = "552 326";
|
||||
horizSizing = "relative";
|
||||
vertSizing = "relative";
|
||||
profile = "ToolsGuiScrollProfile";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
|
||||
|
|
@ -66,7 +70,7 @@ $guiContent = new GuiControl(classPrototyping) {
|
|||
bitmapMode = "Centered";
|
||||
position = "348 467";
|
||||
extent = "22 22";
|
||||
horizSizing = "left";
|
||||
vertSizing = "top";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
command = "SelectAssetPath.showDialog(AssetBrowser.dirHandler.currentAddress, \"setProtoTypeFilePath\");\nSelectAssetPathWindow.selectWindow();";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
|
|
@ -76,7 +80,7 @@ $guiContent = new GuiControl(classPrototyping) {
|
|||
text = "data/ExampleModule";
|
||||
position = "143 470";
|
||||
extent = "201 20";
|
||||
horizSizing = "width";
|
||||
vertSizing = "top";
|
||||
profile = "ToolsGuiTextEditProfile";
|
||||
active = "0";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
|
|
@ -86,12 +90,15 @@ $guiContent = new GuiControl(classPrototyping) {
|
|||
text = "Target Path:";
|
||||
position = "20 470";
|
||||
extent = "116 17";
|
||||
vertSizing = "top";
|
||||
profile = "ToolsGuiTextProfile";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
};
|
||||
new GuiButtonCtrl() {
|
||||
text = "Save";
|
||||
position = "431 465";
|
||||
horizSizing = "left";
|
||||
vertSizing = "top";
|
||||
profile = "ToolsGuiButtonProfile";
|
||||
command = "classPrototyping.writeResults();";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
|
|
@ -100,6 +107,7 @@ $guiContent = new GuiControl(classPrototyping) {
|
|||
text = "Report Commands";
|
||||
position = "16 420";
|
||||
extent = "125 30";
|
||||
vertSizing = "top";
|
||||
profile = "ToolsGuiCheckBoxProfile";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
};
|
||||
|
|
@ -107,6 +115,7 @@ $guiContent = new GuiControl(classPrototyping) {
|
|||
text = "Report Stock Variables";
|
||||
position = "152 420";
|
||||
extent = "125 30";
|
||||
vertSizing = "top";
|
||||
profile = "ToolsGuiCheckBoxProfile";
|
||||
tooltipProfile = "GuiToolTipProfile";
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue