Skip to content
Snippets Groups Projects
Commit 6cd56e09 authored by Luca Bonavita's avatar Luca Bonavita
Browse files

== 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
parent f9bf0ab3
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment