Wings 3D Development Forum
Menu entry string and Object identifier - Printable Version

+- Wings 3D Development Forum (https://www.wings3d.com/forum)
+-- Forum: Wings 3D (https://www.wings3d.com/forum/forumdisplay.php?fid=1)
+--- Forum: Gripes & Grumbles (https://www.wings3d.com/forum/forumdisplay.php?fid=4)
+--- Thread: Menu entry string and Object identifier (/showthread.php?tid=564)



Menu entry string and Object identifier - tkbd - 01-18-2014

In Wings3D 1.5.1's new Cube and Cylinder plugin,menu entry and the object identifier is stored in the same data.

I'm afraid that there is a possibility that the compatibility of files between wings file saved ​​with other language versions may be impaired.
(If that happens, then garbled character occurs in the item of Geometry graph)
so,I do not translate that part.

For example, N-Gon has both string for menu-entry and object identifier.
but Cube isn't it...

Quote: %% -*- mode:erlang; erlang-indent-level: 2 -*-
{wpc_ncube,
[
{cube_str,
[
{1,"Cube"} <-------- display for menu and dispay for Object identifier
]},
{make_ncube,
[
{1,"Cube Options"}
]},
{make_ngon,
[
{1,"N-Gon Options"},
{2,"N-Gon"} <----------Only Object identifier display in geometry graph window (Non-translatable)
]},
{menu,
[
{1,"Create a cube"},
{2,"N-Gon"} <----------- Only display for menu(Translatable )
]},
{ncube_dialog,
[
{1,"Number of Cuts"},
{2,"Yes"},
{3,"No"},
{4,"Spherize"}
]},
{ngon_dialog,
[
{3,"Number of Verts"},
{4,"Radius"}
]}
]}.