CompositingTag
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 09/03/2003 at 03:59, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.012
Platform:
Language(s) : C.O.F.F.E.E ;---------
Is there a way to set the Global Illumation in the CompositingTag
I try things like that:
my_container -> SetData(COMPOSITINGTAG_SEEN_BY_GI,FALSE);
my_container -> SetData(COMPOSITINGTAG_SEENGI,FALSE);
my_container -> SetData(COMPOSITINGTAG_SEEN_BY_GLOBAL-ILLUMINATION,FALSE);But it is not working....
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 09/03/2003 at 13:57, xxxxxxxx wrote:
The correct name is COMPOSITINGTAG_SEENBYGI but it returns an error ("variable or function expected !"), so you just have to replace this name by the ID value 1017 and it works !
my_container -> SetData(1017,FALSE);
You can find all IDs for each parameter in the C4D path:
*Resource\res\description* then, in your case, open the file Tcompositing.h. ("T" for TAG"...) in a text editor.
When the ID name doesn't work, try the corresponding ID value.
Bon courage pour la suite Platane !