Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
76c3df01
Commit
76c3df01
authored
13 years ago
by
Nathan Vegdahl
Browse files
Options
Downloads
Patches
Plain Diff
Rigify: minor bug fixes on the neck and spine rig types.
parent
0e50e65c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
rigify/rigs/neck_short.py
+15
-8
15 additions, 8 deletions
rigify/rigs/neck_short.py
rigify/rigs/spine.py
+1
-3
1 addition, 3 deletions
rigify/rigs/spine.py
with
16 additions
and
11 deletions
rigify/rigs/neck_short.py
+
15
−
8
View file @
76c3df01
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
import
bpy
import
bpy
from
mathutils
import
Vector
from
mathutils
import
Vector
from
rigify.utils
import
MetarigError
from
rigify.utils
import
MetarigError
from
rigify.utils
import
copy_bone
,
flip_bone
,
put_bone
from
rigify.utils
import
copy_bone
,
new_bone
,
flip_bone
,
put_bone
from
rigify.utils
import
connected_children_names
from
rigify.utils
import
connected_children_names
from
rigify.utils
import
strip_org
,
make_mechanism_name
,
make_deformer_name
from
rigify.utils
import
strip_org
,
make_mechanism_name
,
make_deformer_name
from
rigify.utils
import
obj_to_bone
,
create_circle_widget
from
rigify.utils
import
obj_to_bone
,
create_circle_widget
...
@@ -41,8 +41,8 @@ if is_selected(head_neck):
...
@@ -41,8 +41,8 @@ if is_selected(head_neck):
class
Rig
:
class
Rig
:
"""
A
"
spi
ne
"
rig. It turns a chain of bones into a rig with two controls:
"""
A
"
ne
ck
"
rig. It turns a chain of bones into a rig with two controls:
One for the h
ips
, and one for the
rib cage
.
One for the h
ead
, and one for the
neck
.
"""
"""
def
__init__
(
self
,
obj
,
bone_name
,
params
):
def
__init__
(
self
,
obj
,
bone_name
,
params
):
...
@@ -98,9 +98,10 @@ class Rig:
...
@@ -98,9 +98,10 @@ class Rig:
# Create bones
# Create bones
neck_ctrl
=
copy_bone
(
self
.
obj
,
self
.
org_bones
[
0
],
strip_org
(
self
.
org_bones
[
0
]))
neck_ctrl
=
copy_bone
(
self
.
obj
,
self
.
org_bones
[
0
],
strip_org
(
self
.
org_bones
[
0
]))
neck_follow
=
copy_bone
(
self
.
obj
,
self
.
org_bones
[
-
1
],
make_mechanism_name
(
strip_org
(
self
.
org_bones
[
0
]
+
"
.follow
"
)))
neck_follow
=
copy_bone
(
self
.
obj
,
self
.
org_bones
[
-
1
],
make_mechanism_name
(
strip_org
(
self
.
org_bones
[
0
]
+
"
.follow
"
)))
neck_child
=
new_bone
(
self
.
obj
,
make_mechanism_name
(
strip_org
(
self
.
org_bones
[
0
]
+
"
.child
"
)))
head_ctrl
=
copy_bone
(
self
.
obj
,
self
.
org_bones
[
-
1
],
strip_org
(
self
.
org_bones
[
-
1
]))
head_ctrl
=
copy_bone
(
self
.
obj
,
self
.
org_bones
[
-
1
],
strip_org
(
self
.
org_bones
[
-
1
]))
head_mch
=
copy
_bone
(
self
.
obj
,
self
.
org_bones
[
0
],
make_mechanism_name
(
strip_org
(
self
.
org_bones
[
-
1
])))
head_mch
=
new
_bone
(
self
.
obj
,
make_mechanism_name
(
strip_org
(
self
.
org_bones
[
-
1
])))
if
self
.
isolate
:
if
self
.
isolate
:
head_socket1
=
copy_bone
(
self
.
obj
,
self
.
org_bones
[
-
1
],
make_mechanism_name
(
strip_org
(
self
.
org_bones
[
-
1
]
+
"
.socket1
"
)))
head_socket1
=
copy_bone
(
self
.
obj
,
self
.
org_bones
[
-
1
],
make_mechanism_name
(
strip_org
(
self
.
org_bones
[
-
1
]
+
"
.socket1
"
)))
head_socket2
=
copy_bone
(
self
.
obj
,
self
.
org_bones
[
-
1
],
make_mechanism_name
(
strip_org
(
self
.
org_bones
[
-
1
]
+
"
.socket2
"
)))
head_socket2
=
copy_bone
(
self
.
obj
,
self
.
org_bones
[
-
1
],
make_mechanism_name
(
strip_org
(
self
.
org_bones
[
-
1
]
+
"
.socket2
"
)))
...
@@ -110,13 +111,14 @@ class Rig:
...
@@ -110,13 +111,14 @@ class Rig:
helpers
=
[]
helpers
=
[]
for
name
in
self
.
org_bones
:
for
name
in
self
.
org_bones
:
neck
+=
[
copy_bone
(
self
.
obj
,
name
,
make_mechanism_name
(
strip_org
(
name
)))]
neck
+=
[
copy_bone
(
self
.
obj
,
name
,
make_mechanism_name
(
strip_org
(
name
)))]
helpers
+=
[
copy_bone
(
self
.
obj
,
neck_c
trl
,
make_mechanism_name
(
strip_org
(
name
+
"
.02
"
)))]
helpers
+=
[
copy_bone
(
self
.
obj
,
neck_c
hild
,
make_mechanism_name
(
strip_org
(
name
+
"
.02
"
)))]
# Fetch edit bones
# Fetch edit bones
eb
=
self
.
obj
.
data
.
edit_bones
eb
=
self
.
obj
.
data
.
edit_bones
neck_ctrl_e
=
eb
[
neck_ctrl
]
neck_ctrl_e
=
eb
[
neck_ctrl
]
neck_follow_e
=
eb
[
neck_follow
]
neck_follow_e
=
eb
[
neck_follow
]
neck_child_e
=
eb
[
neck_child
]
head_ctrl_e
=
eb
[
head_ctrl
]
head_ctrl_e
=
eb
[
head_ctrl
]
head_mch_e
=
eb
[
head_mch
]
head_mch_e
=
eb
[
head_mch
]
if
self
.
isolate
:
if
self
.
isolate
:
...
@@ -146,13 +148,17 @@ class Rig:
...
@@ -146,13 +148,17 @@ class Rig:
neck_follow_e
.
use_connect
=
False
neck_follow_e
.
use_connect
=
False
neck_follow_e
.
parent
=
neck_ctrl_e
.
parent
neck_follow_e
.
parent
=
neck_ctrl_e
.
parent
neck_child_e
.
use_connect
=
False
neck_child_e
.
parent
=
neck_ctrl_e
neck_ctrl_e
.
parent
=
neck_follow_e
neck_ctrl_e
.
parent
=
neck_follow_e
# Position
# Position
put_bone
(
self
.
obj
,
neck_follow
,
neck_ctrl_e
.
head
)
put_bone
(
self
.
obj
,
neck_follow
,
neck_ctrl_e
.
head
)
put_bone
(
self
.
obj
,
neck_child
,
neck_ctrl_e
.
head
)
put_bone
(
self
.
obj
,
head_ctrl
,
neck_ctrl_e
.
head
)
put_bone
(
self
.
obj
,
head_ctrl
,
neck_ctrl_e
.
head
)
put_bone
(
self
.
obj
,
head_mch
,
neck_ctrl_e
.
head
)
put_bone
(
self
.
obj
,
head_mch
,
neck_ctrl_e
.
head
)
head_mch_e
.
length
/=
2
head_mch_e
.
length
=
head_ctrl_e
.
length
/
2
neck_child_e
.
length
=
neck_ctrl_e
.
length
/
2
if
self
.
isolate
:
if
self
.
isolate
:
put_bone
(
self
.
obj
,
head_socket1
,
neck_ctrl_e
.
head
)
put_bone
(
self
.
obj
,
head_socket1
,
neck_ctrl_e
.
head
)
...
@@ -163,13 +169,14 @@ class Rig:
...
@@ -163,13 +169,14 @@ class Rig:
for
(
name1
,
name2
)
in
zip
(
neck
,
helpers
):
for
(
name1
,
name2
)
in
zip
(
neck
,
helpers
):
put_bone
(
self
.
obj
,
name2
,
eb
[
name1
].
head
)
put_bone
(
self
.
obj
,
name2
,
eb
[
name1
].
head
)
eb
[
name2
].
length
/
=
3
eb
[
name2
].
length
=
eb
[
name1
].
length
/
2
# Switch to object mode
# Switch to object mode
bpy
.
ops
.
object
.
mode_set
(
mode
=
'
OBJECT
'
)
bpy
.
ops
.
object
.
mode_set
(
mode
=
'
OBJECT
'
)
pb
=
self
.
obj
.
pose
.
bones
pb
=
self
.
obj
.
pose
.
bones
neck_ctrl_p
=
pb
[
neck_ctrl
]
neck_ctrl_p
=
pb
[
neck_ctrl
]
neck_follow_p
=
pb
[
neck_follow
]
neck_follow_p
=
pb
[
neck_follow
]
neck_child_p
=
pb
[
neck_child
]
head_ctrl_p
=
pb
[
head_ctrl
]
head_ctrl_p
=
pb
[
head_ctrl
]
if
self
.
isolate
:
if
self
.
isolate
:
head_socket1_p
=
pb
[
head_socket1
]
head_socket1_p
=
pb
[
head_socket1
]
...
@@ -256,7 +263,7 @@ class Rig:
...
@@ -256,7 +263,7 @@ class Rig:
n_con
=
pb
[
name2
].
constraints
.
new
(
'
COPY_TRANSFORMS
'
)
n_con
=
pb
[
name2
].
constraints
.
new
(
'
COPY_TRANSFORMS
'
)
n_con
.
name
=
"
neck
"
n_con
.
name
=
"
neck
"
n_con
.
target
=
self
.
obj
n_con
.
target
=
self
.
obj
n_con
.
subtarget
=
neck_c
trl
n_con
.
subtarget
=
neck_c
hild
h_con
=
pb
[
name2
].
constraints
.
new
(
'
COPY_TRANSFORMS
'
)
h_con
=
pb
[
name2
].
constraints
.
new
(
'
COPY_TRANSFORMS
'
)
h_con
.
name
=
"
head
"
h_con
.
name
=
"
head
"
...
...
This diff is collapsed.
Click to expand it.
rigify/rigs/spine.py
+
1
−
3
View file @
76c3df01
...
@@ -210,8 +210,6 @@ class Rig:
...
@@ -210,8 +210,6 @@ class Rig:
# Main control doesn't use local location
# Main control doesn't use local location
pb
[
main_control
].
bone
.
use_local_location
=
False
pb
[
main_control
].
bone
.
use_local_location
=
False
# Intermediate controls follow hips and spine
# Intermediate controls follow hips and spine
for
name
,
par_name
,
i
in
zip
(
controls
[
1
:
-
1
],
control_parents
,
self
.
control_indices
[
1
:
-
1
]):
for
name
,
par_name
,
i
in
zip
(
controls
[
1
:
-
1
],
control_parents
,
self
.
control_indices
[
1
:
-
1
]):
bone
=
pb
[
par_name
]
bone
=
pb
[
par_name
]
...
@@ -296,7 +294,7 @@ class Rig:
...
@@ -296,7 +294,7 @@ class Rig:
# Position
# Position
put_bone
(
self
.
obj
,
sub
,
bone_e
.
head
)
put_bone
(
self
.
obj
,
sub
,
bone_e
.
head
)
sub_e
.
length
/
=
4
sub_e
.
length
=
bone_e
.
length
/
4
if
prev_bone
is
not
None
:
if
prev_bone
is
not
None
:
sub_e
.
use_connect
=
True
sub_e
.
use_connect
=
True
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment