Skip to content

Instantly share code, notes, and snippets.

View ilayshp's full-sized avatar

Ilya ilayshp

  • freelance
  • Saint-Petersburg, Russia
View GitHub Profile
@cmontesano
cmontesano / select_loop.py
Created January 9, 2019 19:40
Cinema 4D - Python version of my Select Loop plugin
"""
This is a python port of my old Select Loop C++ plugin for Cinema 4D. Rather
than porting this to R20 and recompiling, distributing, etc I decided to port
it to Python for use as a Script manager plugin.
Just import this script into your Script Manager and add it to a toolbar
or assign a shortcut.
MIT License
Copyright 2019 Christopher Montesano
@fwilleke80
fwilleke80 / c4d-list-tags-on-object.py
Last active September 17, 2019 14:28
[C4D] This script lists all tags attached to the selected object, by name and plugin ID. It also shows if a tag is visible or invisible.
"""
Name-US:List tags on object
Description-US:List all tags attached to the selected object, by name and plugin ID
"""
import c4d
"""
This script lists all tags attached to the selected object, by name and plugin ID.
It also shows if a tag is visible or invisible.
"""