shapeEdPreviewWindow.ed.gui 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. //--- OBJECT WRITE BEGIN ---
  2. %guiContent = new GuiControl() {
  3. canSaveDynamicFields = "0";
  4. isContainer = "1";
  5. Profile = "ToolsGuiDefaultProfile";
  6. HorizSizing = "right";
  7. VertSizing = "bottom";
  8. Position = "0 0";
  9. Extent = "1024 768";
  10. MinExtent = "8 2";
  11. canSave = "1";
  12. Visible = "1";
  13. tooltipprofile = "ToolsGuiToolTipProfile";
  14. hovertime = "1000";
  15. new GuiContainer(ShapeEdPreviewGui) {
  16. canSaveDynamicFields = "0";
  17. isContainer = "1";
  18. Profile = "ToolsGuiDefaultProfile";
  19. HorizSizing = "width";
  20. VertSizing = "height";
  21. Position = "0" SPC (getWord(EditorGuiToolbar.extent, 1)-1);
  22. Docking = "Client";
  23. MinExtent = "8 8";
  24. canSave = "1";
  25. Visible = "1";
  26. tooltipprofile = "ToolsGuiToolTipProfile";
  27. hovertime = "1000";
  28. new GuiSwatchButtonCtrl() {
  29. internalName = "previewBackground";
  30. canSaveDynamicFields = "0";
  31. isContainer = "0";
  32. Profile = "GuiInspectorSwatchButtonProfile";
  33. HorizSizing = "width";
  34. VertSizing = "height";
  35. Position = "-210 -40";
  36. Extent = getWord(ShapeEdPreviewGui.extent,0)+212
  37. SPC getWord(ShapeEdPreviewGui.extent,0)+42;
  38. MinExtent = "8 8";
  39. canSave = "1";
  40. Visible = "1";
  41. hovertime = "1000";
  42. color = "0 0 0 .39";
  43. };
  44. new GuiShapeEdPreview(ShapeEdShapeView) {
  45. canSaveDynamicFields = "0";
  46. isContainer = "0";
  47. Profile = "ToolsGuiDefaultProfile";
  48. HorizSizing = "width";
  49. VertSizing = "height";
  50. Position = "-209 -90";
  51. Extent = getWord(ShapeEdPreviewGui.extent,0)+209
  52. SPC getWord(ShapeEdPreviewGui.extent, 1)+90;
  53. MinExtent = "8 8";
  54. canSave = "1";
  55. Visible = "1";
  56. tooltipprofile = "ToolsGuiToolTipProfile";
  57. hovertime = "1000";
  58. Margin = "0 0 0 0";
  59. Padding = "0 0 0 0";
  60. AnchorTop = "1";
  61. AnchorBottom = "0";
  62. AnchorLeft = "1";
  63. AnchorRight = "0";
  64. renderMissionArea = "0";
  65. GizmoProfile = "GlobalGizmoProfile";
  66. cameraZRot = "0";
  67. forceFOV = "0";
  68. gridColor = "0 0 0 140";
  69. renderNodes = "0";
  70. renderObjBox = "0";
  71. renderMounts = "0";
  72. renderColMeshes = "0";
  73. selectedNode = "-1";
  74. sunDiffuse = "255 255 255 255";
  75. sunAmbient = "180 180 180 255";
  76. timeScale = "1.0";
  77. fixedDetail = "0";
  78. orbitNode = "0";
  79. };
  80. };
  81. };
  82. //--- OBJECT WRITE END ---