Skip to content

Commit 3468145

Browse files
committed
Editor: Menubar.Add clean up.
1 parent cf29a58 commit 3468145

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

editor/js/Menubar.Add.js

+21-21
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function MenubarAdd( editor ) {
6363
const meshSubmenu = new UIPanel().setPosition( 'fixed' ).addClass( 'options' ).setDisplay( 'none' );
6464
meshSubmenuTitle.add( meshSubmenu );
6565

66-
// Box
66+
// Mesh / Box
6767

6868
option = new UIRow();
6969
option.setClass( 'option' );
@@ -79,7 +79,7 @@ function MenubarAdd( editor ) {
7979
} );
8080
meshSubmenu.add( option );
8181

82-
// Capsule
82+
// Mesh / Capsule
8383

8484
option = new UIRow();
8585
option.setClass( 'option' );
@@ -96,7 +96,7 @@ function MenubarAdd( editor ) {
9696
} );
9797
meshSubmenu.add( option );
9898

99-
// Circle
99+
// Mesh / Circle
100100

101101
option = new UIRow();
102102
option.setClass( 'option' );
@@ -112,7 +112,7 @@ function MenubarAdd( editor ) {
112112
} );
113113
meshSubmenu.add( option );
114114

115-
// Cylinder
115+
// Mesh / Cylinder
116116

117117
option = new UIRow();
118118
option.setClass( 'option' );
@@ -128,7 +128,7 @@ function MenubarAdd( editor ) {
128128
} );
129129
meshSubmenu.add( option );
130130

131-
// Dodecahedron
131+
// Mesh / Dodecahedron
132132

133133
option = new UIRow();
134134
option.setClass( 'option' );
@@ -144,7 +144,7 @@ function MenubarAdd( editor ) {
144144
} );
145145
meshSubmenu.add( option );
146146

147-
// Icosahedron
147+
// Mesh / Icosahedron
148148

149149
option = new UIRow();
150150
option.setClass( 'option' );
@@ -160,7 +160,7 @@ function MenubarAdd( editor ) {
160160
} );
161161
meshSubmenu.add( option );
162162

163-
// Lathe
163+
// Mesh / Lathe
164164

165165
option = new UIRow();
166166
option.setClass( 'option' );
@@ -176,7 +176,7 @@ function MenubarAdd( editor ) {
176176
} );
177177
meshSubmenu.add( option );
178178

179-
// Octahedron
179+
// Mesh / Octahedron
180180

181181
option = new UIRow();
182182
option.setClass( 'option' );
@@ -192,7 +192,7 @@ function MenubarAdd( editor ) {
192192
} );
193193
meshSubmenu.add( option );
194194

195-
// Plane
195+
// Mesh / Plane
196196

197197
option = new UIRow();
198198
option.setClass( 'option' );
@@ -209,7 +209,7 @@ function MenubarAdd( editor ) {
209209
} );
210210
meshSubmenu.add( option );
211211

212-
// Ring
212+
// Mesh / Ring
213213

214214
option = new UIRow();
215215
option.setClass( 'option' );
@@ -225,7 +225,7 @@ function MenubarAdd( editor ) {
225225
} );
226226
meshSubmenu.add( option );
227227

228-
// Sphere
228+
// Mesh / Sphere
229229

230230
option = new UIRow();
231231
option.setClass( 'option' );
@@ -241,7 +241,7 @@ function MenubarAdd( editor ) {
241241
} );
242242
meshSubmenu.add( option );
243243

244-
// Sprite
244+
// Mesh / Sprite
245245

246246
option = new UIRow();
247247
option.setClass( 'option' );
@@ -256,7 +256,7 @@ function MenubarAdd( editor ) {
256256
} );
257257
meshSubmenu.add( option );
258258

259-
// Tetrahedron
259+
// Mesh / Tetrahedron
260260

261261
option = new UIRow();
262262
option.setClass( 'option' );
@@ -272,7 +272,7 @@ function MenubarAdd( editor ) {
272272
} );
273273
meshSubmenu.add( option );
274274

275-
// Torus
275+
// Mesh / Torus
276276

277277
option = new UIRow();
278278
option.setClass( 'option' );
@@ -288,7 +288,7 @@ function MenubarAdd( editor ) {
288288
} );
289289
meshSubmenu.add( option );
290290

291-
// TorusKnot
291+
// Mesh / TorusKnot
292292

293293
option = new UIRow();
294294
option.setClass( 'option' );
@@ -304,7 +304,7 @@ function MenubarAdd( editor ) {
304304
} );
305305
meshSubmenu.add( option );
306306

307-
// Tube
307+
// Mesh / Tube
308308

309309
option = new UIRow();
310310
option.setClass( 'option' );
@@ -351,7 +351,7 @@ function MenubarAdd( editor ) {
351351
const lightSubmenu = new UIPanel().setPosition( 'fixed' ).addClass( 'options' ).setDisplay( 'none' );
352352
lightSubmenuTitle.add( lightSubmenu );
353353

354-
// AmbientLight
354+
// Light / Ambient
355355

356356
option = new UIRow();
357357
option.setClass( 'option' );
@@ -368,7 +368,7 @@ function MenubarAdd( editor ) {
368368
} );
369369
lightSubmenu.add( option );
370370

371-
// DirectionalLight
371+
// Light / Directional
372372

373373
option = new UIRow();
374374
option.setClass( 'option' );
@@ -389,7 +389,7 @@ function MenubarAdd( editor ) {
389389
} );
390390
lightSubmenu.add( option );
391391

392-
// HemisphereLight
392+
// Light / Hemisphere
393393

394394
option = new UIRow();
395395
option.setClass( 'option' );
@@ -410,7 +410,7 @@ function MenubarAdd( editor ) {
410410
} );
411411
lightSubmenu.add( option );
412412

413-
// PointLight
413+
// Light / Point
414414

415415
option = new UIRow();
416416
option.setClass( 'option' );
@@ -429,7 +429,7 @@ function MenubarAdd( editor ) {
429429
} );
430430
lightSubmenu.add( option );
431431

432-
// SpotLight
432+
// Light / Spot
433433

434434
option = new UIRow();
435435
option.setClass( 'option' );

0 commit comments

Comments
 (0)