Created
August 4, 2012 01:57
-
-
Save 990adjustments/3253485 to your computer and use it in GitHub Desktop.
A Cinema 4D C.O.F.F.E.E. script that adds an expresso tag to a selected object.
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 expresso tag on the selected object | |
if (!op) | |
return NULL; | |
var expressoTag = AllocTag(Texpresso); | |
op->InsertTag(expressoTag); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment