On the way to Blender

0 comments


 Nice

0 comments

Ngetest  Blender Cycle

Info pasal jpeg (jay peg)

0 comments

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)

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