.. | .. |
---|
60 | 60 | this.copy = this.group = group; |
---|
61 | 61 | //selectees = this.group.selectees; |
---|
62 | 62 | |
---|
| 63 | + if (copy.versions == null) |
---|
| 64 | + { |
---|
| 65 | + copy.versions = new byte[100][]; |
---|
| 66 | + copy.versionindex = -1; |
---|
| 67 | + } |
---|
| 68 | + |
---|
63 | 69 | if(ui) |
---|
64 | 70 | SetupUI(objEditor); |
---|
65 | 71 | } |
---|
.. | .. |
---|
74 | 80 | this.copy = this.group = copy; |
---|
75 | 81 | //selectees = this.group.selectees; |
---|
76 | 82 | |
---|
| 83 | + if (copy.versions == null) |
---|
| 84 | + { |
---|
| 85 | + copy.versions = new byte[100][]; |
---|
| 86 | + copy.versionindex = -1; |
---|
| 87 | + } |
---|
| 88 | + |
---|
77 | 89 | SetupMenu2(this); //objEditor); |
---|
78 | 90 | SetupUI2(objEditor); |
---|
79 | 91 | objEditor.SetupUI(true); |
---|
.. | .. |
---|
84 | 96 | |
---|
85 | 97 | void CloneSelection(boolean supports) |
---|
86 | 98 | { |
---|
87 | | - if (Globals.SAVEONMAKE) |
---|
| 99 | + if (Globals.REPLACEONMAKE) |
---|
88 | 100 | Save(); |
---|
89 | | - boolean keep = Globals.SAVEONMAKE; |
---|
90 | | - Globals.SAVEONMAKE = false; |
---|
| 101 | + boolean keep = Globals.REPLACEONMAKE; |
---|
| 102 | + Globals.REPLACEONMAKE = false; |
---|
91 | 103 | // Object3D keep = GrafreeD.clipboard; |
---|
92 | 104 | //Object3D obj; |
---|
93 | 105 | for (int i=0; i<group.selection.size(); i++)// Enumeration e = group.selection.elements(); e.hasMoreElements();) |
---|
.. | .. |
---|
98 | 110 | |
---|
99 | 111 | makeSomething(clone, i==group.selection.size()-1); |
---|
100 | 112 | } |
---|
101 | | - Globals.SAVEONMAKE = keep; |
---|
| 113 | + Globals.REPLACEONMAKE = keep; |
---|
102 | 114 | } |
---|
103 | 115 | |
---|
104 | 116 | void CloneClipboard(boolean supports) |
---|
.. | .. |
---|
194 | 206 | // pasteExpandItem = menu.add(new MenuItem("Paste expand")); |
---|
195 | 207 | // pasteExpandItem.addActionListener(this); |
---|
196 | 208 | menu.add("-"); |
---|
197 | | - clearItem = menu.add(new MenuItem("Clear")); |
---|
198 | | - clearItem.addActionListener(this); |
---|
| 209 | + deleteItem = menu.add(new MenuItem("Delete")); |
---|
| 210 | + deleteItem.addActionListener(this); |
---|
199 | 211 | |
---|
200 | 212 | if (Globals.ADVANCED) |
---|
201 | 213 | { |
---|
.. | .. |
---|
421 | 433 | genNormalsMESHItem.addActionListener(this); |
---|
422 | 434 | if (Globals.ADVANCED) |
---|
423 | 435 | { |
---|
424 | | - genNormalsMINEItem = menu.add(new MenuItem("My Normals")); |
---|
| 436 | + genNormalsMINEItem = menu.add(new MenuItem("Stitch Normals")); |
---|
425 | 437 | genNormalsMINEItem.addActionListener(this); |
---|
426 | 438 | } |
---|
427 | 439 | stripifyItem = menu.add(new MenuItem("Stripify")); |
---|
.. | .. |
---|
544 | 556 | buildToolsMenu(menu); |
---|
545 | 557 | } |
---|
546 | 558 | |
---|
| 559 | + |
---|
547 | 560 | void SetupUI2(ObjEditor oe) |
---|
548 | 561 | { |
---|
549 | 562 | // June 2019 |
---|
.. | .. |
---|
615 | 628 | restoreCameraButton.setToolTipText("Restore viewpoint"); |
---|
616 | 629 | restoreCameraButton.addActionListener(this); |
---|
617 | 630 | |
---|
| 631 | + copyOptionsPanel.add(saveButton = GetButton("icons/down_arrow.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 632 | + saveButton.setToolTipText("New version"); |
---|
| 633 | + saveButton.addActionListener(this); |
---|
| 634 | + |
---|
618 | 635 | copyOptionsPanel.add(undoButton = GetButton("icons/undo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
619 | | - undoButton.setToolTipText("Undo changes"); |
---|
| 636 | + undoButton.setToolTipText("Previous version"); |
---|
620 | 637 | undoButton.addActionListener(this); |
---|
621 | 638 | undoButton.setEnabled(false); |
---|
622 | 639 | |
---|
| 640 | + cGridBag updown = new cGridBag().setVertical(true); |
---|
| 641 | + updown.add(restoreButton = GetButton("icons/restore.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 642 | + restoreButton.setToolTipText("Restore current"); |
---|
| 643 | + restoreButton.addActionListener(this); |
---|
| 644 | + restoreButton.setEnabled(false); |
---|
| 645 | + |
---|
| 646 | + updown.add(replaceButton = GetButton("icons/replace.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 647 | + replaceButton.setToolTipText("Replace current"); |
---|
| 648 | + replaceButton.addActionListener(this); |
---|
| 649 | + replaceButton.setEnabled(false); |
---|
| 650 | + |
---|
| 651 | + copyOptionsPanel.add(updown); |
---|
| 652 | + |
---|
623 | 653 | copyOptionsPanel.add(redoButton = GetButton("icons/redo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
624 | | - redoButton.setToolTipText("Redo changes"); |
---|
| 654 | + redoButton.setToolTipText("Next version"); |
---|
625 | 655 | redoButton.addActionListener(this); |
---|
626 | 656 | redoButton.setEnabled(false); |
---|
627 | 657 | |
---|
628 | | - copyOptionsPanel.add(saveButton = GetButton("icons/down_arrow.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
629 | | - saveButton.setToolTipText("Save changes"); |
---|
630 | | - saveButton.addActionListener(this); |
---|
631 | | - |
---|
632 | | - copyOptionsPanel.add(liveCB = GetToggleButton("icons/run.png", Globals.isLIVE())); //, oe.aConstraints); |
---|
| 658 | + oe.toolbarPanel.add(liveCB = GetToggleButton("icons/run.png", Globals.isLIVE())); //, oe.aConstraints); |
---|
633 | 659 | liveCB.setToolTipText("Enable animation"); |
---|
634 | 660 | liveCB.addItemListener(this); |
---|
635 | 661 | |
---|
636 | | - copyOptionsPanel.add(oneStepButton = GetButton("icons/step.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 662 | + oe.toolbarPanel.add(oneStepButton = GetButton("icons/step.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
637 | 663 | oneStepButton.setToolTipText("Animate one step forward"); |
---|
638 | 664 | oneStepButton.addActionListener(this); |
---|
639 | 665 | |
---|
640 | | - copyOptionsPanel.add(fastCB = GetToggleButton("icons/runfast.png", CameraPane.FAST)); //, constraints); |
---|
| 666 | + oe.toolbarPanel.add(fastCB = GetToggleButton("icons/runfast.png", CameraPane.FAST)); //, constraints); |
---|
641 | 667 | fastCB.setToolTipText("Fast mode"); |
---|
642 | 668 | fastCB.addItemListener(this); |
---|
643 | 669 | |
---|
.. | .. |
---|
659 | 685 | |
---|
660 | 686 | //oe.toolbarPanel.add(new JSeparator(SwingConstants.VERTICAL)); |
---|
661 | 687 | |
---|
662 | | - oe.toolbarPanel.add(twoButton = new cButton("|-|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
663 | | - twoButton.setToolTipText("Show center view only"); |
---|
664 | | - twoButton.addActionListener(this); |
---|
665 | | - this.fullscreenLayout = twoButton; |
---|
666 | | - |
---|
667 | 688 | oe.toolbarPanel.add(fourButton = new cButton("-||", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
668 | 689 | fourButton.addActionListener(this); |
---|
669 | 690 | fourButton.setToolTipText("Show left panel only"); |
---|
| 691 | + |
---|
| 692 | + oe.toolbarPanel.add(twoButton = new cButton("|-|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 693 | + twoButton.setToolTipText("Show right view only"); |
---|
| 694 | + twoButton.addActionListener(this); |
---|
| 695 | + this.fullscreenLayout = twoButton; |
---|
| 696 | + |
---|
670 | 697 | oe.toolbarPanel.add(sixButton = new cButton("-|-|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
671 | | - sixButton.setToolTipText("2-column layout left"); |
---|
| 698 | + sixButton.setToolTipText("Show left and right"); |
---|
672 | 699 | sixButton.addActionListener(this); |
---|
673 | | - oe.toolbarPanel.add(threeButton = new cButton("|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
674 | | - threeButton.setToolTipText("2-column layout right"); |
---|
675 | | - threeButton.addActionListener(this); |
---|
676 | | - oe.toolbarPanel.add(sevenButton = new cButton("-|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
677 | | - sevenButton.setToolTipText("3-column layout"); |
---|
678 | | - sevenButton.addActionListener(this); |
---|
| 700 | +// oe.toolbarPanel.add(threeButton = new cButton("|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 701 | +// threeButton.setToolTipText("2-column layout right"); |
---|
| 702 | +// threeButton.addActionListener(this); |
---|
| 703 | +// oe.toolbarPanel.add(sevenButton = new cButton("-|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 704 | +// sevenButton.setToolTipText("3-column layout"); |
---|
| 705 | +// sevenButton.addActionListener(this); |
---|
679 | 706 | // |
---|
680 | 707 | |
---|
681 | | - oe.toolbarPanel.add(rootButton = GetButton("icons/write.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
682 | | - rootButton.setToolTipText("Edit selection in new tab"); |
---|
| 708 | + oe.toolbarPanel.add(rootButton = GetButton("icons/openwindow.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 709 | + rootButton.setToolTipText("Open selection in new tab"); |
---|
683 | 710 | rootButton.addActionListener(this); |
---|
684 | 711 | |
---|
685 | 712 | oe.toolbarPanel.add(closeButton = GetButton("icons/close-icon.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
.. | .. |
---|
820 | 847 | |
---|
821 | 848 | oe.treePanel.add(copyOptionsPanel); |
---|
822 | 849 | oe.treePanel.Return(); |
---|
| 850 | + cGridBag sliderPane = AddSlider(oe.treePanel, "Version", 0, 0, 0); |
---|
| 851 | + versionSlider = (cNumberSlider)sliderPane.getComponent(1); |
---|
| 852 | + sliderPane.preferredHeight = 1; |
---|
823 | 853 | |
---|
824 | 854 | // mainPanel.setDividerLocation(0.5); //1.0); |
---|
825 | 855 | // mainPanel.setResizeWeight(0.5); |
---|
.. | .. |
---|
842 | 872 | dgr.addDragGestureListener(this); |
---|
843 | 873 | }catch(Exception e) {} |
---|
844 | 874 | */ |
---|
845 | | - radio.layout = sevenButton; |
---|
| 875 | + radio.layout = sixButton; // sevenButton; |
---|
846 | 876 | oe.toolbarPanel.add(radioPanel); //, oe.aConstraints); |
---|
847 | 877 | } |
---|
848 | 878 | |
---|
.. | .. |
---|
945 | 975 | toggleSwitchCB.setToolTipText("Choose a single item"); |
---|
946 | 976 | toggleSwitchCB.addItemListener(this); |
---|
947 | 977 | |
---|
948 | | - panel.add(autosaveCB = new cCheckBox("Auto-save", Globals.SAVEONMAKE)); //, constraints); |
---|
949 | | - autosaveCB.setToolTipText("On structure change"); |
---|
950 | | - autosaveCB.addItemListener(this); |
---|
| 978 | + panel.add(autokeepCB = new cCheckBox("Auto-replace", Globals.REPLACEONMAKE)); //, constraints); |
---|
| 979 | + autokeepCB.setToolTipText("On structure change"); |
---|
| 980 | + autokeepCB.addItemListener(this); |
---|
951 | 981 | |
---|
952 | 982 | panel.Return(); |
---|
953 | 983 | if (Globals.ADVANCED) |
---|
.. | .. |
---|
984 | 1014 | } |
---|
985 | 1015 | |
---|
986 | 1016 | radioButton.SetObject(obj); |
---|
987 | | - radioButton.layout = sevenButton; |
---|
| 1017 | + radioButton.layout = sixButton; // sevenButton; |
---|
988 | 1018 | radioButton.SetCamera(cameraView.renderCamera, false); |
---|
989 | 1019 | radioButton.addActionListener(this); |
---|
990 | 1020 | radioPanel.add(radioButton); |
---|
.. | .. |
---|
1024 | 1054 | |
---|
1025 | 1055 | cCheckBox oeilCB; |
---|
1026 | 1056 | cCheckBox shadowCB; |
---|
1027 | | - cCheckBox autosaveCB; |
---|
| 1057 | + cCheckBox autokeepCB; |
---|
1028 | 1058 | cCheckBox lookAtCB; |
---|
1029 | 1059 | |
---|
1030 | 1060 | // static int COLOR = 1; |
---|
.. | .. |
---|
1136 | 1166 | { |
---|
1137 | 1167 | Globals.FREEZEONMOVE ^= true; |
---|
1138 | 1168 | } |
---|
1139 | | - else if(e.getSource() == autosaveCB) |
---|
| 1169 | + else if(e.getSource() == autokeepCB) |
---|
1140 | 1170 | { |
---|
1141 | | - Globals.SAVEONMAKE ^= true; |
---|
| 1171 | + Globals.REPLACEONMAKE ^= true; |
---|
1142 | 1172 | } |
---|
1143 | 1173 | else if(e.getSource() == lookAtCB) |
---|
1144 | 1174 | { |
---|
.. | .. |
---|
1663 | 1693 | listUI.remove(i); |
---|
1664 | 1694 | } |
---|
1665 | 1695 | } |
---|
| 1696 | + } |
---|
| 1697 | + |
---|
| 1698 | + private void EditElement(Object3D elem, boolean newWindow) |
---|
| 1699 | + { |
---|
| 1700 | + // if (!(elem instanceof Composite)) |
---|
| 1701 | + // newWindow = false; |
---|
| 1702 | + listUI.add(elem); |
---|
| 1703 | + elem.openEditWindow(this, newWindow); //, false); |
---|
| 1704 | + System.out.println("edit : " + elem); |
---|
| 1705 | + elem.editWindow.refreshContents(true); // ? new |
---|
1666 | 1706 | } |
---|
1667 | 1707 | |
---|
1668 | 1708 | /** |
---|
.. | .. |
---|
2225 | 2265 | } else |
---|
2226 | 2266 | if (source == undoButton) |
---|
2227 | 2267 | { |
---|
2228 | | - if (!Undo()) |
---|
2229 | | - java.awt.Toolkit.getDefaultToolkit().beep(); |
---|
| 2268 | + // Go to previous version |
---|
| 2269 | + //if (!Undo()) |
---|
| 2270 | + //java.awt.Toolkit.getDefaultToolkit().beep(); |
---|
| 2271 | + Undo(); |
---|
| 2272 | + } else |
---|
| 2273 | + if (source == restoreButton) |
---|
| 2274 | + { |
---|
| 2275 | + // Restore current version |
---|
| 2276 | + Restore(); |
---|
| 2277 | + } else |
---|
| 2278 | + if (source == replaceButton) |
---|
| 2279 | + { |
---|
| 2280 | + // Overwrite current version |
---|
| 2281 | + Replace(); |
---|
2230 | 2282 | } else |
---|
2231 | 2283 | if (source == redoButton) |
---|
2232 | 2284 | { |
---|
| 2285 | + // Go to next version |
---|
2233 | 2286 | Redo(); |
---|
2234 | 2287 | } else |
---|
2235 | 2288 | if (source == saveButton) |
---|
2236 | 2289 | { |
---|
| 2290 | + // Save a new version |
---|
2237 | 2291 | if (!Save(true)) |
---|
2238 | 2292 | java.awt.Toolkit.getDefaultToolkit().beep(); |
---|
2239 | 2293 | } else |
---|
.. | .. |
---|
2615 | 2669 | { |
---|
2616 | 2670 | StepAll(); |
---|
2617 | 2671 | } else |
---|
2618 | | - if (source == clearItem) // || event.getSource() == clearButton) |
---|
| 2672 | + if (source == deleteItem) // || event.getSource() == clearButton) |
---|
2619 | 2673 | { |
---|
2620 | 2674 | //int indices[] = jList.getSelectedIndices(); |
---|
2621 | 2675 | //for (int i = indices.length - 1; i >= 0; i--) |
---|
.. | .. |
---|
3479 | 3533 | } |
---|
3480 | 3534 | |
---|
3481 | 3535 | copy = group; |
---|
| 3536 | + |
---|
| 3537 | + SetUndoStates(); |
---|
| 3538 | + |
---|
3482 | 3539 | //Globals.theRenderer.object = group; |
---|
3483 | 3540 | if(!useclient) |
---|
3484 | 3541 | { |
---|
.. | .. |
---|
3507 | 3564 | radio.layout.doClick(); |
---|
3508 | 3565 | |
---|
3509 | 3566 | ClearUnpinned(); |
---|
3510 | | - SetPinStates(group.selection.size() > 0); |
---|
3511 | | - if (group.selection.size() == 1) |
---|
| 3567 | + //Grafreed.Assert(group != null); |
---|
| 3568 | + //Grafreed.Assert(group.selection != null); |
---|
| 3569 | + SetPinStates(group.selection == null || group.selection.size() > 0); |
---|
| 3570 | + if (group.selection == null || group.selection.size() == 1) |
---|
3512 | 3571 | EditSelection(false); |
---|
3513 | 3572 | keepparent = group.parent; |
---|
3514 | 3573 | // PARENT = NULL or not??? |
---|
.. | .. |
---|
4579 | 4638 | |
---|
4580 | 4639 | void EditSelection(boolean newWindow) |
---|
4581 | 4640 | { |
---|
| 4641 | + if (group.selection == null) |
---|
| 4642 | + { |
---|
| 4643 | + EditElement(group, newWindow); // ? new |
---|
| 4644 | + return; |
---|
| 4645 | + } |
---|
| 4646 | + |
---|
4582 | 4647 | // aConstraints.gridy = 0; |
---|
4583 | 4648 | for (int i=0; i<group.selection.size(); i++) |
---|
4584 | 4649 | { |
---|
.. | .. |
---|
4589 | 4654 | Object3D elem = (Object3D)group.selection.elementAt(i); |
---|
4590 | 4655 | if(elem != group || !newWindow) |
---|
4591 | 4656 | { |
---|
4592 | | - // if (!(elem instanceof Composite)) |
---|
4593 | | - // newWindow = false; |
---|
4594 | | - listUI.add(elem); |
---|
4595 | | - elem.openEditWindow(this, newWindow); //, false); |
---|
4596 | | - System.out.println("edit : " + elem); |
---|
4597 | | - elem.editWindow.refreshContents(true); // ? new |
---|
| 4657 | + EditElement(elem, newWindow); // ? new |
---|
4598 | 4658 | } |
---|
4599 | 4659 | } |
---|
4600 | 4660 | } |
---|
.. | .. |
---|
4942 | 5002 | |
---|
4943 | 5003 | void paste(boolean expand) |
---|
4944 | 5004 | { |
---|
4945 | | - if (Globals.SAVEONMAKE) |
---|
| 5005 | + if (Globals.REPLACEONMAKE) |
---|
4946 | 5006 | Save(); |
---|
4947 | | - boolean keep = Globals.SAVEONMAKE; |
---|
4948 | | - Globals.SAVEONMAKE = false; |
---|
| 5007 | + boolean keep = Globals.REPLACEONMAKE; |
---|
| 5008 | + Globals.REPLACEONMAKE = false; |
---|
4949 | 5009 | // if (GrafreeD.clipboard == null) |
---|
4950 | 5010 | // return; |
---|
4951 | 5011 | boolean first = true; |
---|
.. | .. |
---|
5005 | 5065 | Grafreed.clipboard.get(0).parent = keepparent; |
---|
5006 | 5066 | } |
---|
5007 | 5067 | |
---|
5008 | | - Globals.SAVEONMAKE = keep; |
---|
| 5068 | + Globals.REPLACEONMAKE = keep; |
---|
5009 | 5069 | ResetModel(); |
---|
5010 | 5070 | refreshContents(); |
---|
5011 | 5071 | } |
---|
.. | .. |
---|
5141 | 5201 | |
---|
5142 | 5202 | void group(Object3D csg, boolean grab) |
---|
5143 | 5203 | { |
---|
5144 | | - if (Globals.SAVEONMAKE) |
---|
| 5204 | + if (Globals.REPLACEONMAKE) |
---|
5145 | 5205 | Save(); |
---|
5146 | | - boolean keep = Globals.SAVEONMAKE; |
---|
5147 | | - Globals.SAVEONMAKE = false; |
---|
| 5206 | + boolean keep = Globals.REPLACEONMAKE; |
---|
| 5207 | + Globals.REPLACEONMAKE = false; |
---|
5148 | 5208 | if (//false) // why?? |
---|
5149 | 5209 | !group.selection.isEmpty()) |
---|
5150 | 5210 | { |
---|
.. | .. |
---|
5258 | 5318 | //node.add(csg); |
---|
5259 | 5319 | //makeSomething(node); |
---|
5260 | 5320 | makeSomething(csg); |
---|
5261 | | - Globals.SAVEONMAKE = keep; |
---|
| 5321 | + Globals.REPLACEONMAKE = keep; |
---|
5262 | 5322 | } |
---|
5263 | 5323 | |
---|
5264 | 5324 | void Ungroup(Object3D g) |
---|
5265 | 5325 | { |
---|
5266 | | - if (Globals.SAVEONMAKE) |
---|
| 5326 | + if (Globals.REPLACEONMAKE) |
---|
5267 | 5327 | Save(); |
---|
5268 | | - boolean keep = Globals.SAVEONMAKE; |
---|
5269 | | - Globals.SAVEONMAKE = false; |
---|
| 5328 | + boolean keep = Globals.REPLACEONMAKE; |
---|
| 5329 | + Globals.REPLACEONMAKE = false; |
---|
5270 | 5330 | if (g instanceof HiddenObject) |
---|
5271 | 5331 | { |
---|
5272 | 5332 | HiddenObject h = (HiddenObject) g; |
---|
.. | .. |
---|
5283 | 5343 | objEditor.makeSomething(g.get(i), false); |
---|
5284 | 5344 | } |
---|
5285 | 5345 | } |
---|
5286 | | - Globals.SAVEONMAKE = keep; |
---|
| 5346 | + Globals.REPLACEONMAKE = keep; |
---|
5287 | 5347 | } |
---|
5288 | 5348 | |
---|
5289 | 5349 | void ungroup() |
---|
.. | .. |
---|
5647 | 5707 | private MenuItem pasteLinkItem; |
---|
5648 | 5708 | private MenuItem pasteCloneItem; |
---|
5649 | 5709 | private MenuItem pasteExpandItem; |
---|
5650 | | - private MenuItem clearItem; |
---|
| 5710 | + private MenuItem deleteItem; |
---|
5651 | 5711 | private MenuItem clearAllItem; |
---|
5652 | 5712 | private MenuItem genUVItem; |
---|
5653 | 5713 | private MenuItem genNormalsMESHItem; |
---|