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:
Diffstat (limited to 'space_view3d_spacebar_menu.py')
-rw-r--r--space_view3d_spacebar_menu.py27
1 files changed, 12 insertions, 15 deletions
diff --git a/space_view3d_spacebar_menu.py b/space_view3d_spacebar_menu.py
index 50f49dff..921c90b0 100644
--- a/space_view3d_spacebar_menu.py
+++ b/space_view3d_spacebar_menu.py
@@ -22,6 +22,18 @@
#
# ##### END GPL LICENSE BLOCK #####
+bl_addon_info = {
+ "name": "3D View: Dynamic Spacebar Menu",
+ "author": "JayDez, sim88, meta-androcto", "sam"
+ "version": "1.5",
+ "blender": (2, 5, 3),
+ "location": "View3D > Spacebar",
+ "description": "Context sensitive spacebar menu",
+ "warning": "",
+ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/Scripts/3D_interaction/Dynamic_Spacebar_Menu",
+ "tracker_url": "https://projects.blender.org/tracker/index.php?func=detail&aid=22060&group_id=153&atid=469",
+ "category": "3D View"}
+
"""
Dynamic Menu
This adds a the Dynamic Spacebar Menu in the View3D.
@@ -47,21 +59,6 @@ v0.1 through 0.9 - various tests/contributions by various people and scripts
Scripts: 3D Cursor Menu, Original Dynamic Menu
"""
-
-bl_addon_info = {
- 'name': '3D View: Dynamic Spacebar Menu',
- 'author': 'JayDez, sim88, meta-androcto', 'sam'
- 'version': '1.5',
- 'blender': (2, 5, 3),
- 'location': 'View3D > Spacebar',
- 'description': 'Context sensitive spacebar menu',
- 'warning': '', # used for warning icon and text in addons panel
- 'wiki_url': 'http://wiki.blender.org/index.php/Extensions:2.5/Py/' \
- 'Scripts/3D_interaction/Dynamic_Spacebar_Menu',
- 'tracker_url': 'https://projects.blender.org/tracker/index.php?'\
- 'func=detail&aid=22060&group_id=153&atid=469',
- 'category': '3D View'}
-
import bpy
from bpy import *
from mathutils import Vector, Matrix