RE: LDView povray export
2019-06-22, 2:45 (This post was last modified: 2019-06-22, 2:57 by Michael Horvath.)
2019-06-22, 2:45 (This post was last modified: 2019-06-22, 2:57 by Michael Horvath.)
(2019-06-21, 22:00)Orion Pobursky Wrote: Just throw an #ifdef in there.
I guess I could also do this:
Code:
#declare EnableCamera = true;
#if (EnableCamera = false)
#declare LDXSkipCamera = true;
#elseif (EnableCamera = true)
#ifdef (LDXSkipCamera)
#undef LDXSkipCamera
#end
#end
This is very convoluted compared to just switching a variable from true to false or the reverse, however. As if my include files didn't already have too much junk in them.