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
ea96c101
Commit
ea96c101
authored
2 years ago
by
Daniel Salazar
Browse files
Options
Downloads
Patches
Plain Diff
AnimAll: Make key selected only disabled by default
parent
57d6a1e3
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
animation_animall.py
+5
-5
5 additions, 5 deletions
animation_animall.py
with
5 additions
and
5 deletions
animation_animall.py
+
5
−
5
View file @
ea96c101
...
...
@@ -3,7 +3,7 @@
bl_info
=
{
"
name
"
:
"
AnimAll
"
,
"
author
"
:
"
Daniel Salazar (ZanQdo), Damien Picard (pioverfour)
"
,
"
version
"
:
(
0
,
9
,
2
),
"
version
"
:
(
0
,
9
,
3
),
"
blender
"
:
(
3
,
3
,
0
),
"
location
"
:
"
3D View > Toolbox > Animation tab > AnimAll
"
,
"
description
"
:
"
Allows animation of mesh, lattice, curve and surface data
"
,
...
...
@@ -30,7 +30,7 @@ class AnimallProperties(bpy.types.PropertyGroup):
key_selected
:
BoolProperty
(
name
=
"
Key Selected Only
"
,
description
=
"
Insert keyframes only on selected elements
"
,
default
=
Tru
e
default
=
Fals
e
)
key_shape
:
BoolProperty
(
name
=
"
Shape Key
"
,
...
...
@@ -137,7 +137,7 @@ class VIEW3D_PT_animall(Panel):
def
draw
(
self
,
context
):
obj
=
context
.
active_object
animall_properties
=
context
.
window_manager
.
animall_properties
animall_properties
=
obj
.
animall_properties
layout
=
self
.
layout
...
...
@@ -643,7 +643,7 @@ class AnimallAddonPreferences(AddonPreferences):
def
register
():
bpy
.
utils
.
register_class
(
AnimallProperties
)
bpy
.
types
.
WindowManager
.
animall_properties
=
bpy
.
props
.
PointerProperty
(
type
=
AnimallProperties
)
bpy
.
types
.
Object
.
animall_properties
=
bpy
.
props
.
PointerProperty
(
type
=
AnimallProperties
)
bpy
.
utils
.
register_class
(
VIEW3D_PT_animall
)
bpy
.
utils
.
register_class
(
ANIM_OT_insert_keyframe_animall
)
bpy
.
utils
.
register_class
(
ANIM_OT_delete_keyframe_animall
)
...
...
@@ -654,7 +654,7 @@ def register():
def
unregister
():
del
bpy
.
types
.
WindowManager
.
animall_properties
del
bpy
.
types
.
Object
.
animall_properties
bpy
.
utils
.
unregister_class
(
AnimallProperties
)
bpy
.
utils
.
unregister_class
(
VIEW3D_PT_animall
)
bpy
.
utils
.
unregister_class
(
ANIM_OT_insert_keyframe_animall
)
...
...
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