Created
August 4, 2012 01:49
-
-
Save 990adjustments/3253435 to your computer and use it in GitHub Desktop.
A Cinema 4D C.O.F.F.E.E. script that adds a compositing tag to a selected object with "Seen by Camera" off by default.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
main(doc,op) | |
{ | |
// Insert a compositing tag on the selected object | |
if (!op) | |
return NULL; | |
var compositingTag = AllocTag(Tcompositing); | |
compositingTag#COMPOSITINGTAG_SEENBYCAMERA = 0; | |
op->InsertTag(compositingTag); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment