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
path: root/rigify
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-02-16 05:52:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-16 05:52:12 +0300
commit5b86f5a4077fb3fb24b08c72dff8d6f9be95a15d (patch)
tree959401deea4862b066c946b5dfd1df8301046dde /rigify
parentd890d19a9ee4771e057a475a98b7a11013c58133 (diff)
update for changes in blender.
Diffstat (limited to 'rigify')
-rw-r--r--rigify/__init__.py4
-rw-r--r--rigify/rigs/biped/arm/__init__.py2
-rw-r--r--rigify/rigs/biped/leg/__init__.py2
-rw-r--r--rigify/rigs/finger.py2
-rw-r--r--rigify/rigs/palm.py2
5 files changed, 6 insertions, 6 deletions
diff --git a/rigify/__init__.py b/rigify/__init__.py
index 29eb5bb4..9ffad7ac 100644
--- a/rigify/__init__.py
+++ b/rigify/__init__.py
@@ -108,11 +108,11 @@ for c in collection_list:
col_enum_list += [(c, c, "")]
-class RigifyName(bpy.types.IDPropertyGroup):
+class RigifyName(bpy.types.PropertyGroup):
name = bpy.props.StringProperty()
-class RigifyParameters(bpy.types.IDPropertyGroup):
+class RigifyParameters(bpy.types.PropertyGroup):
name = bpy.props.StringProperty()
diff --git a/rigify/rigs/biped/arm/__init__.py b/rigify/rigs/biped/arm/__init__.py
index 13d9e430..0fd2c43f 100644
--- a/rigify/rigs/biped/arm/__init__.py
+++ b/rigify/rigs/biped/arm/__init__.py
@@ -69,7 +69,7 @@ class Rig:
@classmethod
def add_parameters(self, group):
""" Add the parameters of this rig type to the
- RigifyParameters IDPropertyGroup
+ RigifyParameters PropertyGroup
"""
items = [('X', 'X', ''), ('Y', 'Y', ''), ('Z', 'Z', ''), ('-X', '-X', ''), ('-Y', '-Y', ''), ('-Z', '-Z', '')]
diff --git a/rigify/rigs/biped/leg/__init__.py b/rigify/rigs/biped/leg/__init__.py
index 5cbf3b11..4c9997bf 100644
--- a/rigify/rigs/biped/leg/__init__.py
+++ b/rigify/rigs/biped/leg/__init__.py
@@ -69,7 +69,7 @@ class Rig:
@classmethod
def add_parameters(self, group):
""" Add the parameters of this rig type to the
- RigifyParameters IDPropertyGroup
+ RigifyParameters PropertyGroup
"""
items = [('X', 'X', ''), ('Y', 'Y', ''), ('Z', 'Z', ''), ('-X', '-X', ''), ('-Y', '-Y', ''), ('-Z', '-Z', '')]
diff --git a/rigify/rigs/finger.py b/rigify/rigs/finger.py
index f5788d02..0676899b 100644
--- a/rigify/rigs/finger.py
+++ b/rigify/rigs/finger.py
@@ -277,7 +277,7 @@ class Rig:
@classmethod
def add_parameters(self, group):
""" Add the parameters of this rig type to the
- RigifyParameters IDPropertyGroup
+ RigifyParameters PropertyGroup
"""
items = [('X', 'X', ''), ('Y', 'Y', ''), ('Z', 'Z', ''), ('-X', '-X', ''), ('-Y', '-Y', ''), ('-Z', '-Z', '')]
group.primary_rotation_axis = bpy.props.EnumProperty(items=items, name="Primary Rotation Axis", default='X')
diff --git a/rigify/rigs/palm.py b/rigify/rigs/palm.py
index 5a0fa773..26cb3715 100644
--- a/rigify/rigs/palm.py
+++ b/rigify/rigs/palm.py
@@ -161,7 +161,7 @@ class Rig:
@classmethod
def add_parameters(self, group):
""" Add the parameters of this rig type to the
- RigifyParameters IDPropertyGroup
+ RigifyParameters PropertyGroup
"""
items = [('X', 'X', ''), ('Z', 'Z', '')]