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
626a035c
Commit
626a035c
authored
12 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
minor code cleanup
parent
df4fbc5a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rigify/ui.py
+16
-13
16 additions, 13 deletions
rigify/ui.py
with
16 additions
and
13 deletions
rigify/ui.py
+
16
−
13
View file @
626a035c
...
...
@@ -67,7 +67,7 @@ class DATA_PT_rigify_buttons(bpy.types.Panel):
elif
r
.
startswith
(
collection_name
+
'
.
'
):
a
=
id_store
.
rigify_types
.
add
()
a
.
name
=
r
elif
collection_name
==
"
None
"
and
len
(
r
.
split
(
'
.
'
))
==
1
:
elif
(
collection_name
==
"
None
"
)
and
(
"
.
"
not
in
r
)
:
a
=
id_store
.
rigify_types
.
add
()
a
.
name
=
r
...
...
@@ -79,8 +79,8 @@ class DATA_PT_rigify_buttons(bpy.types.Panel):
row
=
layout
.
row
()
row
.
template_list
(
"
UI_UL_list
"
,
""
,
id_store
,
"
rigify_types
"
,
id_store
,
'
rigify_active_type
'
)
op
=
layout
.
operator
(
"
armature.metarig_sample_add
"
,
text
=
"
Add sample
"
)
op
.
metarig_type
=
id_store
.
rigify_types
[
id_store
.
rigify_active_type
].
name
pr
op
s
=
layout
.
operator
(
"
armature.metarig_sample_add
"
,
text
=
"
Add sample
"
)
pr
op
s
.
metarig_type
=
id_store
.
rigify_types
[
id_store
.
rigify_active_type
].
name
class
DATA_PT_rigify_layer_names
(
bpy
.
types
.
Panel
):
...
...
@@ -99,19 +99,21 @@ class DATA_PT_rigify_layer_names(bpy.types.Panel):
def
draw
(
self
,
context
):
layout
=
self
.
layout
obj
=
context
.
object
arm
=
obj
.
data
# Ensure that the layers exist
if
0
:
for
i
in
range
(
1
+
len
(
obj
.
data
.
rigify_layers
),
29
):
obj
.
data
.
rigify_layers
.
add
()
for
i
in
range
(
1
+
len
(
arm
.
rigify_layers
),
29
):
arm
.
rigify_layers
.
add
()
else
:
# Can't add while drawing, just use button
if
len
(
obj
.
data
.
rigify_layers
)
<
28
:
if
len
(
arm
.
rigify_layers
)
<
28
:
layout
.
operator
(
"
pose.rigify_layer_init
"
)
return
# UI
for
i
in
range
(
28
):
for
i
,
rigify_layer
in
enumerate
(
arm
.
rigify_layers
):
# note: rigify_layer == arm.rigify_layers[i]
if
(
i
%
16
)
==
0
:
col
=
layout
.
column
()
if
i
==
0
:
...
...
@@ -121,11 +123,11 @@ class DATA_PT_rigify_layer_names(bpy.types.Panel):
if
(
i
%
8
)
==
0
:
col
=
layout
.
column
(
align
=
True
)
row
=
col
.
row
()
row
.
prop
(
obj
.
data
,
"
layers
"
,
index
=
i
,
text
=
""
,
toggle
=
True
)
row
.
prop
(
arm
,
"
layers
"
,
index
=
i
,
text
=
""
,
toggle
=
True
)
split
=
row
.
split
(
percentage
=
0.8
)
split
.
prop
(
obj
.
data
.
rigify_layer
s
[
i
]
,
"
name
"
,
text
=
"
Layer %d
"
%
(
i
+
1
))
split
.
prop
(
obj
.
data
.
rigify_layer
s
[
i
]
,
"
row
"
,
text
=
""
)
#split.prop(
obj.data.
rigify_layer
s[i]
, "column", text="")
split
.
prop
(
rigify_layer
,
"
name
"
,
text
=
"
Layer %d
"
%
(
i
+
1
))
split
.
prop
(
rigify_layer
,
"
row
"
,
text
=
""
)
#split.prop(rigify_layer, "column", text="")
class
BONE_PT_rigify_buttons
(
bpy
.
types
.
Panel
):
...
...
@@ -244,8 +246,9 @@ class LayerInit(bpy.types.Operator):
def
execute
(
self
,
context
):
obj
=
context
.
object
for
i
in
range
(
1
+
len
(
obj
.
data
.
rigify_layers
),
29
):
obj
.
data
.
rigify_layers
.
add
()
arm
=
obj
.
data
for
i
in
range
(
1
+
len
(
arm
.
rigify_layers
),
29
):
arm
.
rigify_layers
.
add
()
return
{
'
FINISHED
'
}
...
...
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