Merge pull request #1636 from Azaezel/alpha41/PrototypeRezFix
Some checks are pending
Linux Build / ${{matrix.config.name}} (map[build_type:Release cc:gcc cxx:g++ generator:Ninja name:Ubuntu Latest GCC]) (push) Waiting to run
MacOSX Build / ${{matrix.config.name}} (map[build_type:Release cc:clang cxx:clang++ generator:Ninja name:MacOSX Latest Clang]) (push) Waiting to run
Windows Build / ${{matrix.config.name}} (map[build_type:Release cc:cl cxx:cl environment_script:C:/Program Files (x86)/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat generator:Visual Studio 17 2022 name:Windows Latest MSVC]) (push) Waiting to run

fix class prototype rescale
This commit is contained in:
Brian Roberts 2025-12-25 17:44:38 -06:00 committed by GitHub
commit e39e5ef7a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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";
};