fixes to bl_info, minor cleanup, toolshelf fix for bsurfaces.

This commit is contained in:
Brendon Murphy 2014-08-14 19:40:12 +10:00
parent a323e298ad
commit 38c657a6cd
7 changed files with 11 additions and 10 deletions

View File

@ -51,7 +51,7 @@ class INFO_MT_curve_extras_add(bpy.types.Menu):
def draw(self, context):
layout = self.layout
layout.operator_context = 'INVOKE_REGION_WIN'
layout.operator("mesh.curveaceous_galor e",
layout.operator("mesh.curveaceous_galore",
text="Curves Galore!")
layout.operator("curve.spirals",
text="Spirals")

View File

@ -20,7 +20,7 @@ bl_info = {
"name": "Sapling",
"author": "Andrew Hale (TrumanBlending)",
"version": (0, 2, 6),
"blender": (2, 64, 0),
"blender": (2, 71, 0),
"location": "View3D > Add > Curve",
"description": ("Adds a parametric tree. The method is presented by "
"Jason Weber & Joseph Penn in their paper 'Creation and Rendering of "

View File

@ -75,6 +75,7 @@ class VIEW3D_PT_tools_SURFSK_curve(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'TOOLS'
bl_context = "curve_edit"
bl_category = 'Tools'
bl_label = "Bsurfaces"
@classmethod

View File

@ -21,7 +21,7 @@ bl_info = {
"author": "Brian Hinton (Nichod)",
"version": (0, 1, 1),
"blender": (2, 71, 0),
"location": "View3D > Add > Mesh",
"location": "Toolshelf > Create Tab",
"description": "Adds Chain with curve guide for easy creation",
"warning": "",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"

View File

@ -22,8 +22,8 @@ bl_info = {
"name": "Cloud Generator",
"author": "Nick Keeline(nrk)",
"version": (1, 0),
"blender": (2, 59, 0),
"location": "View3D > Tool Shelf > Cloud Generator Panel",
"blender": (2, 71, 0),
"location": "Tool Shelf > Create Tab",
"description": "Creates Volumetric Clouds",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
"Scripts/Object/Cloud_Gen",

View File

@ -25,8 +25,8 @@ bl_info = {
"name": "3D Navigation",
"author": "Demohero, uriel",
"version": (1, 2),
"blender": (2, 57, 0),
"location": "View3D > Tool Shelf > 3D Nav",
"blender": (2, 71, 0),
"location": "View3D > Tool Shelf > 3D Navigation Tab",
"description": "Navigate the Camera & 3D View from the Toolshelf",
"warning": "",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"

View File

@ -22,8 +22,8 @@ bl_info = {
"name": "Layer Management",
"author": "Alfonso Annarumma",
"version": (1, 5, 1),
"blender": (2, 70, 0),
"location": "View3D > Properties panel > Layer Management",
"blender": (2, 71, 0),
"location": "Toolshelf > Layers Tab",
"warning": "",
"description": "Display and Edit Layer Name",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/Scripts/3D_interaction/layer_manager",
@ -510,7 +510,7 @@ class SCENE_UL_namedlayer_groups(UIList):
class SCENE_PT_namedlayer_groups(bpy.types.Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'TOOLS'
bl_category = "Layer"
bl_category = "Layers"
bl_label = "Layer Groups"
bl_options = {'DEFAULT_CLOSED'}