Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Bonavita <mindrones@gmail.com>2010-11-23 14:04:48 +0300
committerLuca Bonavita <mindrones@gmail.com>2010-11-23 14:04:48 +0300
commit6cd56e091d47cea31b5ed595d6affa58298a8886 (patch)
treeab6056045ebc7aad9342d5fef7c4166b1fa00d37 /animation_rotobezier.py
parentf9bf0ab3690a34763c5403c70f224ba2692da511 (diff)
== rotobezier ==
- formatted links - moved release log below bl_addon_info (speeds up reading addons info when building addons panel) - moved the warning in bl_addon_info so users can see it from blender addon panel
Diffstat (limited to 'animation_rotobezier.py')
-rw-r--r--animation_rotobezier.py29
1 files changed, 15 insertions, 14 deletions
diff --git a/animation_rotobezier.py b/animation_rotobezier.py
index 94260f82..ccc315f7 100644
--- a/animation_rotobezier.py
+++ b/animation_rotobezier.py
@@ -16,8 +16,22 @@
#
# ##### END GPL LICENSE BLOCK #####
+bl_addon_info = {
+ 'name': 'RotoBezier',
+ 'author': 'Daniel Salazar <zanqdo@gmail.com>',
+ 'version': (0, 6),
+ 'blender': (2, 5, 5),
+ 'api': 33232,
+ 'location': 'Select a Curve: Properties > Curve > RotoBezier panel',
+ 'description': 'Allows animation of bezier curves for rotoscoping',
+ 'warning': 'Currently adding new CVs to an already animated curve isn\'t safe',
+ 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/'\
+ 'Scripts/Animation/RotoBezier',
+ 'tracker_url': 'http://projects.blender.org/tracker/index.php?'\
+ 'func=detail&aid=24839&group_id=153&atid=469',
+ 'category': 'Animation'}
+
'''-------------------------------------------------------------------------
-WARNING: Currently adding new CVs to an already animated curve isn't safe
Thanks to Campbell Barton for hes API additions and fixes
Daniel Salazar - ZanQdo
@@ -29,19 +43,6 @@ Rev 0.5 added pass index property
Rev 0.6 re-arranged UI
-------------------------------------------------------------------------'''
-bl_addon_info = {
- 'name': 'RotoBezier',
- 'author': 'Daniel Salazar <zanqdo@gmail.com>',
- 'version': (0,6),
- 'blender': (2, 5, 5),
- 'api': 33232,
- 'location': 'Select a Curve > 3D View Toolbar > RotoBezier',
- 'description': 'Allows animation of bezier curves for rotoscoping',
- 'warning': '',
- 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/Animation/RotoBezier',
- 'tracker_url': 'http://projects.blender.org/tracker/index.php?func=detail&aid=24839&group_id=153&atid=469',
- 'category': 'Animation'}
-
import bpy