Skip to content

Instantly share code, notes, and snippets.

@MikeUdin
MikeUdin / Select instaces with same reference object.py
Last active January 5, 2017 12:27
Select instaces with same reference object
import c4d
# Check out tutoral here
# http://mikeudin.net/2017/01/05/cinema-4d-python-recursive-hierarchy-iteration/
def recur_iter(obj,ref):
while obj:
if obj[c4d.INSTANCEOBJECT_LINK] == ref:
obj.SetBit(c4d.BIT_ACTIVE)
recur_iter(obj.GetDown(),ref)
@MikeUdin
MikeUdin / QuickFolder.py
Created October 11, 2016 14:59
Open in Explorer/Finder folder from customizable popup menu
import c4d
from os import path as p
from c4d import storage as st
from c4d import gui
# Welcome to the world of Python
# Author: Mike Udin,
# Tutorial here http://mikeudin.net/?p=2930
# 2016
@MikeUdin
MikeUdin / ParentObject_FromPopUpMenu.py
Created October 11, 2016 14:54
Place selected objects as childs to Parent from popup menu
import c4d
from c4d import gui
# Welcome to the world of Python
# Author: Mike Udin,
# Tutorial here http://mikeudin.net/?p=2930
# 2016
def main():
objs = doc.GetActiveObjects(1)
@MikeUdin
MikeUdin / Create text file.py
Last active January 24, 2021 12:25
How to create text file, read and write info
import c4d
from os import path as p
from c4d import gui
# Welcome to the world of Python
# Author: Mike Udin,
# Tutorial here https://mikeudin.net/2016/10/06/cinema-4d-python-tips-working-with-text-files/
# 2016
def main():
@MikeUdin
MikeUdin / Create Materials for Selected Objects.py
Last active September 26, 2016 15:34
Create Materials with Checkerboard shader for Selected Objects
import c4d
from c4d import gui
from random import randint
# Welcome to the world of Python
# Author: Mike Udin,
# Tutorial here http://mikeudin.net/?p=2915
# 2016
def randomColor(x,y):
@MikeUdin
MikeUdin / Place_Selected_To_Connect.py
Last active September 25, 2016 08:54
Place Selected Objects To Connect
import c4d
# Welcome to the world of Python
# Author: Mike Udin, http://mikeudin.net
# 2016
def main():
objs = doc.GetActiveObjects(1)
if not objs: return
doc.StartUndo()