Skip to content

Instantly share code, notes, and snippets.

@990adjustments
Created August 4, 2012 01:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 990adjustments/3253485 to your computer and use it in GitHub Desktop.
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.
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