MaterialToolbar.ed.gui 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //--- OBJECT WRITE BEGIN ---
  2. %guiContent = new GuiControl(MaterialEditorToolbar) {
  3. canSaveDynamicFields = "0";
  4. internalName = "ShapeEditorToolbar";
  5. Enabled = "1";
  6. isContainer = "1";
  7. Profile = "ToolsGuiDefaultProfile";
  8. HorizSizing = "right";
  9. VertSizing = "bottom";
  10. Position = "672 0";
  11. Extent = "802" SPC getWord(EditorGuiToolbar.extent, 1);
  12. MinExtent = "8 2";
  13. canSave = "1";
  14. Visible = "1";
  15. hovertime = "1000";
  16. canMove = "0";
  17. canClose = "0";
  18. canMinimize = "0";
  19. canMaximize = "0";
  20. resizeWidth = "0";
  21. resizeHeight = "0";
  22. EdgeSnap = "0";
  23. text ="";
  24. new GuiTextCtrl() {
  25. profile = "ToolsGuiTextProfile";
  26. horizSizing = "right";
  27. vertSizing = "bottom";
  28. position = "5 7";
  29. extent = "76 16";
  30. minExtent = "8 8";
  31. visible = "1";
  32. text = "Material Library";
  33. maxLength = "255";
  34. helpTag = "0";
  35. };
  36. new GuiBitmapCtrl() {
  37. Enabled = "1";
  38. Profile = "ToolsGuiDefaultProfile";
  39. position = "86 3";
  40. Extent = "2 26";
  41. MinExtent = "1 1";
  42. bitmap = "tools/gui/images/separator-h.png";
  43. };
  44. new GuiBitmapButtonCtrl() {
  45. canSaveDynamicFields = "0";
  46. internalName = "";
  47. Enabled = "1";
  48. isContainer = "0";
  49. Profile = "ToolsGuiButtonProfile";
  50. HorizSizing = "right";
  51. VertSizing = "bottom";
  52. Position = "91 3";
  53. Extent = "29 27";
  54. MinExtent = "8 8";
  55. canSave = "1";
  56. Visible = "1";
  57. Command = "materialSelector.showDialog();";
  58. tooltipprofile = "ToolsGuiToolTipProfile";
  59. ToolTip = "Select and Edit an Existing Material";
  60. hovertime = "1000";
  61. bitmap = "tools/materialEditor/gui/materialSelectorIcon";
  62. text = "";
  63. groupNum = "-1";
  64. buttonType = "PushButton";
  65. useMouseEvents = "0";
  66. };
  67. };