[Bf-extensions-cvs] [cec3f91d] master: addons: shorten animation to animate: T70017

meta-androcto noreply at git.blender.org
Tue Sep 24 13:52:15 CEST 2019


Commit: cec3f91d6da4b79634cd373b0af0a12995596c97
Author: meta-androcto
Date:   Tue Sep 24 21:51:54 2019 +1000
Branches: master
https://developer.blender.org/rBAcec3f91d6da4b79634cd373b0af0a12995596c97

addons: shorten animation to animate: T70017

===================================================================

M	animation_animall.py
M	camera_turnaround.py

===================================================================

diff --git a/animation_animall.py b/animation_animall.py
index b74693c3..38f80153 100644
--- a/animation_animall.py
+++ b/animation_animall.py
@@ -21,7 +21,7 @@ bl_info = {
     "author": "Daniel Salazar <zanqdo at gmail.com>",
     "version": (0, 8, 3),
     "blender": (2, 80, 0),
-    "location": "3D View > Sidebar > Animation tab > AnimAll",
+    "location": "3D View > Toolbox > Animation tab > AnimAll",
     "description": "Allows animation of mesh, lattice, curve and surface data",
     "warning": "",
     "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
@@ -139,7 +139,7 @@ def delete_key(data, key):
 class VIEW3D_PT_animall(Panel):
     bl_space_type = 'VIEW_3D'
     bl_region_type = 'UI'
-    bl_category = "Animation"
+    bl_category = "Animate"
     bl_label = 'AnimAll'
     bl_options = {'DEFAULT_CLOSED'}
 
@@ -552,7 +552,7 @@ class AnimallAddonPreferences(AddonPreferences):
     category: StringProperty(
         name="Tab Category",
         description="Choose a name for the category of the panel",
-        default="Animation",
+        default="Animate",
         update=update_panel
     )
 
diff --git a/camera_turnaround.py b/camera_turnaround.py
index ab3c2700..88204d05 100644
--- a/camera_turnaround.py
+++ b/camera_turnaround.py
@@ -21,11 +21,11 @@ bl_info = {
     "author": "Antonio Vazquez (antonioya)",
     "version": (0, 3, 0),
     "blender": (2, 80, 0),
-    "location": "View3D > Sidebar > Animation Tab > Turnaround Camera",
+    "location": "View3D > Sidebar > View Tab > Turnaround Camera",
     "description": "Add a camera rotation around selected object",
     "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
                 "Scripts/Animation/TurnaroundCamera",
-    "category": "Camera"}
+    "category": "Animation"}
 
 
 import bpy
@@ -266,7 +266,7 @@ class CAMERATURN_PT_ui(Panel):
     bl_label = "Turnaround Camera"
     bl_space_type = "VIEW_3D"
     bl_region_type = "UI"
-    bl_category = "Animation"
+    bl_category = "Animate"
     bl_context = "objectmode"
     bl_options = {'DEFAULT_CLOSED'}



More information about the Bf-extensions-cvs mailing list