addons: shorten animation to animate: T70017

This commit is contained in:
Brendon Murphy 2019-09-24 21:51:54 +10:00
parent aae47dca77
commit cec3f91d6d
2 changed files with 6 additions and 6 deletions

View File

@ -21,7 +21,7 @@ bl_info = {
"author": "Daniel Salazar <zanqdo@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
)

View File

@ -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'}