Wings 3D Development Forum

Full Version: Menu entry string and Object identifier
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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"}
]}
]}.