Please modify the following files for me since I don't have commit access. If you can provide me with a luxconsole.exe build in win32 and win64 binaries, I can test on my Windows machines. Presently, I have only test on Linux.
- (paramset.cpp) Insert after line 719
- Code: Select all
if (s == "center_stl_000")
AddBool(s, (bool*)(params[i]));
- (stlmesh.cpp) Insert after line 48
- Code: Select all
bool bCenterStl000 = params.FindOneBool("center_stl_000", false);
- (stlmesh.cpp) Insert after line 221
- Code: Select all
if (bCenterStl000)
I will revise the wiki page on the scene file after the commit. Basically, the param in the scene file will be a boolean for the attribute 'center_stl_000'. True will center the STL mesh and a false will not.
