fix class prototype rescale

This commit is contained in:
AzaezelX 2025-12-24 11:35:30 -06:00
parent a181f488b2
commit dcc68e1d85

View file

@ -20,6 +20,8 @@ $guiContent = new GuiControl(classPrototyping) {
lockVertScroll = "1"; lockVertScroll = "1";
position = "14 30"; position = "14 30";
extent = "564 33"; extent = "564 33";
horizSizing = "relative";
vertSizing = "relative";
profile = "ToolsGuiScrollProfile"; profile = "ToolsGuiScrollProfile";
tooltipProfile = "GuiToolTipProfile"; tooltipProfile = "GuiToolTipProfile";
@ -47,6 +49,8 @@ $guiContent = new GuiControl(classPrototyping) {
new GuiScrollCtrl() { new GuiScrollCtrl() {
position = "19 80"; position = "19 80";
extent = "552 326"; extent = "552 326";
horizSizing = "relative";
vertSizing = "relative";
profile = "ToolsGuiScrollProfile"; profile = "ToolsGuiScrollProfile";
tooltipProfile = "GuiToolTipProfile"; tooltipProfile = "GuiToolTipProfile";
@ -66,7 +70,7 @@ $guiContent = new GuiControl(classPrototyping) {
bitmapMode = "Centered"; bitmapMode = "Centered";
position = "348 467"; position = "348 467";
extent = "22 22"; extent = "22 22";
horizSizing = "left"; vertSizing = "top";
profile = "ToolsGuiButtonProfile"; profile = "ToolsGuiButtonProfile";
command = "SelectAssetPath.showDialog(AssetBrowser.dirHandler.currentAddress, \"setProtoTypeFilePath\");\nSelectAssetPathWindow.selectWindow();"; command = "SelectAssetPath.showDialog(AssetBrowser.dirHandler.currentAddress, \"setProtoTypeFilePath\");\nSelectAssetPathWindow.selectWindow();";
tooltipProfile = "GuiToolTipProfile"; tooltipProfile = "GuiToolTipProfile";
@ -76,7 +80,7 @@ $guiContent = new GuiControl(classPrototyping) {
text = "data/ExampleModule"; text = "data/ExampleModule";
position = "143 470"; position = "143 470";
extent = "201 20"; extent = "201 20";
horizSizing = "width"; vertSizing = "top";
profile = "ToolsGuiTextEditProfile"; profile = "ToolsGuiTextEditProfile";
active = "0"; active = "0";
tooltipProfile = "GuiToolTipProfile"; tooltipProfile = "GuiToolTipProfile";
@ -86,12 +90,15 @@ $guiContent = new GuiControl(classPrototyping) {
text = "Target Path:"; text = "Target Path:";
position = "20 470"; position = "20 470";
extent = "116 17"; extent = "116 17";
vertSizing = "top";
profile = "ToolsGuiTextProfile"; profile = "ToolsGuiTextProfile";
tooltipProfile = "GuiToolTipProfile"; tooltipProfile = "GuiToolTipProfile";
}; };
new GuiButtonCtrl() { new GuiButtonCtrl() {
text = "Save"; text = "Save";
position = "431 465"; position = "431 465";
horizSizing = "left";
vertSizing = "top";
profile = "ToolsGuiButtonProfile"; profile = "ToolsGuiButtonProfile";
command = "classPrototyping.writeResults();"; command = "classPrototyping.writeResults();";
tooltipProfile = "GuiToolTipProfile"; tooltipProfile = "GuiToolTipProfile";
@ -100,6 +107,7 @@ $guiContent = new GuiControl(classPrototyping) {
text = "Report Commands"; text = "Report Commands";
position = "16 420"; position = "16 420";
extent = "125 30"; extent = "125 30";
vertSizing = "top";
profile = "ToolsGuiCheckBoxProfile"; profile = "ToolsGuiCheckBoxProfile";
tooltipProfile = "GuiToolTipProfile"; tooltipProfile = "GuiToolTipProfile";
}; };
@ -107,6 +115,7 @@ $guiContent = new GuiControl(classPrototyping) {
text = "Report Stock Variables"; text = "Report Stock Variables";
position = "152 420"; position = "152 420";
extent = "125 30"; extent = "125 30";
vertSizing = "top";
profile = "ToolsGuiCheckBoxProfile"; profile = "ToolsGuiCheckBoxProfile";
tooltipProfile = "GuiToolTipProfile"; tooltipProfile = "GuiToolTipProfile";
}; };