Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rigify/legacy/rigs/pitchipoy')
-rw-r--r--rigify/legacy/rigs/pitchipoy/simple_tentacle.py2
-rw-r--r--rigify/legacy/rigs/pitchipoy/super_face.py2
-rw-r--r--rigify/legacy/rigs/pitchipoy/super_palm.py2
-rw-r--r--rigify/legacy/rigs/pitchipoy/tentacle.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/rigify/legacy/rigs/pitchipoy/simple_tentacle.py b/rigify/legacy/rigs/pitchipoy/simple_tentacle.py
index 9351a659..facb2b90 100644
--- a/rigify/legacy/rigs/pitchipoy/simple_tentacle.py
+++ b/rigify/legacy/rigs/pitchipoy/simple_tentacle.py
@@ -194,7 +194,7 @@ class Rig:
setattr( con, prop, True )
else:
setattr( con, prop, False )
- con.use_offset = True
+ con.mix_mode = 'OFFSET'
con.target_space = 'LOCAL'
con.owner_space = 'LOCAL'
diff --git a/rigify/legacy/rigs/pitchipoy/super_face.py b/rigify/legacy/rigs/pitchipoy/super_face.py
index 41d1169e..5a46299a 100644
--- a/rigify/legacy/rigs/pitchipoy/super_face.py
+++ b/rigify/legacy/rigs/pitchipoy/super_face.py
@@ -698,7 +698,7 @@ class Rig:
const = owner_pb.constraints.new( 'COPY_ROTATION' )
const.target = self.obj
const.subtarget = subtarget
- const.use_offset = True
+ const.mix_mode = 'OFFSET'
const.target_space = 'LOCAL'
const.owner_space = 'LOCAL'
diff --git a/rigify/legacy/rigs/pitchipoy/super_palm.py b/rigify/legacy/rigs/pitchipoy/super_palm.py
index 68d38958..a87eb735 100644
--- a/rigify/legacy/rigs/pitchipoy/super_palm.py
+++ b/rigify/legacy/rigs/pitchipoy/super_palm.py
@@ -110,7 +110,7 @@ class Rig:
# turn off inherit scale for all ORG-bones to prevent undesired transformations
for o in self.org_bones:
- eb[o].use_inherit_scale = False
+ eb[o].inherit_scale = 'NONE'
for d, b in zip(def_bones, self.org_bones):
eb[d].use_connect = False
diff --git a/rigify/legacy/rigs/pitchipoy/tentacle.py b/rigify/legacy/rigs/pitchipoy/tentacle.py
index c3a8c85a..36c7f40a 100644
--- a/rigify/legacy/rigs/pitchipoy/tentacle.py
+++ b/rigify/legacy/rigs/pitchipoy/tentacle.py
@@ -307,7 +307,7 @@ class Rig:
con = pb[ctrl].constraints.new('COPY_ROTATION')
con.target = self.obj
con.subtarget = ctrls[ ctrls.index(ctrl) - 1 ]
- con.use_offset = True
+ con.mix_mode = 'OFFSET'
con.target_space = 'LOCAL'
con.owner_space = 'LOCAL'