Blender sculpt

2 comments

Uhh... nice...

My 3D Garage: Facial Setup -Blend shapes

0 comments

My 3D Garage: Facial Setup -Blend shapes

0 comments

......................

Localize all reference model in scene

0 comments

#=============================================
# Make all ref model in scene local

from siutils import si, sisel, log

for obj in si.ActiveSceneRoot.FindChildren("*", "#model"):
    xx = obj.Parameters("referenced_model").Value==True
    if xx:
        yy = obj.Parameters("active_resolution").Value==True
        if yy:
            #print obj
            si.MakeModelLocal(obj, "", 2)

#=============================================

Compositing Network

0 comments

 Huhuhu... macam laa hebat sangat...

Welcome to Python

0 comments


from siutils import si, sisel, log

log("Hello World!")