On Tue, 12 Aug 2003 19:15:02 -0600, "Kevin Loney" <kev### [at] ekoikcom> wrote:
> #declare ShowObject = true/false/yes/no/on/off;
>
> #if(ShowObject)
> object {
> obj_Whatever
> }
> #end
additionally ShowObject can be controlled from command line/ini option box
Ini Option:
Declare=ShowObject=1
POV Script:
#ifndef(ShowObject)
#declare ShowObject = true/false/yes/no/on/off/0/1;
#endif
// [...] some POV code
#if(ShowObject)
object {
obj_Whatever
}
#end
ABX
Post a reply to this message
|