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
c7232394
Commit
c7232394
authored
14 years ago
by
Daniel Salazar
Browse files
Options
Downloads
Patches
Plain Diff
AnimAll: Users got a bit confused on how to use Shape animation. This should help
parent
9e2c0ef6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
animation_animall.py
+17
-0
17 additions, 0 deletions
animation_animall.py
with
17 additions
and
0 deletions
animation_animall.py
+
17
−
0
View file @
c7232394
...
...
@@ -88,6 +88,9 @@ class VIEW3D_PT_animall(bpy.types.Panel):
# draw the gui
def
draw
(
self
,
context
):
Obj
=
context
.
active_object
layout
=
self
.
layout
col
=
layout
.
column
(
align
=
True
)
...
...
@@ -106,6 +109,20 @@ class VIEW3D_PT_animall(bpy.types.Panel):
row
.
operator
(
'
anim.delete_keyframe_animall
'
,
icon
=
'
KEY_DEHLT
'
)
row
=
layout
.
row
()
row
.
operator
(
'
anim.clear_animation_animall
'
,
icon
=
'
X
'
)
if
context
.
window_manager
.
key_shape
:
ShapeKey
=
Obj
.
active_shape_key
split
=
layout
.
split
()
row
=
split
.
row
()
if
ShapeKey
:
row
.
label
(
ShapeKey
.
name
,
icon
=
'
SHAPEKEY_DATA
'
)
row
.
prop
(
ShapeKey
,
"
value
"
,
text
=
""
)
row
.
prop
(
Obj
,
"
show_only_shape_key
"
,
text
=
""
)
else
:
row
.
label
(
'
No active ShapeKey
'
,
icon
=
'
INFO
'
)
class
ANIM_OT_insert_keyframe_animall
(
bpy
.
types
.
Operator
):
...
...
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