[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [1190] trunk/py/scripts/addons/ animation_rotobezier.py: == rotobezier ==

Luca Bonavita mindrones at gmail.com
Tue Nov 23 12:04:48 CET 2010


Revision: 1190
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=1190
Author:   mindrones
Date:     2010-11-23 12:04:48 +0100 (Tue, 23 Nov 2010)

Log Message:
-----------
== 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

Modified Paths:
--------------
    trunk/py/scripts/addons/animation_rotobezier.py

Modified: trunk/py/scripts/addons/animation_rotobezier.py
===================================================================
--- trunk/py/scripts/addons/animation_rotobezier.py	2010-11-23 09:09:25 UTC (rev 1189)
+++ trunk/py/scripts/addons/animation_rotobezier.py	2010-11-23 11:04:48 UTC (rev 1190)
@@ -16,8 +16,22 @@
 #
 # ##### END GPL LICENSE BLOCK #####
 
+bl_addon_info = {
+    'name': 'RotoBezier',
+    'author': 'Daniel Salazar <zanqdo at 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,20 +43,7 @@
 Rev 0.6 re-arranged UI
 -------------------------------------------------------------------------'''
 
-bl_addon_info = {
-    'name': 'RotoBezier',
-    'author': 'Daniel Salazar <zanqdo at 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
 
 #




More information about the Bf-extensions-cvs mailing list