Changeset View
Changeset View
Standalone View
Standalone View
object_print3d_utils/__init__.py
| Context not available. | |||||
| # <pep8-80 compliant> | # <pep8-80 compliant> | ||||
| bl_info = { | bl_info = { | ||||
| "name": "3D Print Toolbox", | "name": "Print3D Toolbox", | ||||
| "author": "Campbell Barton", | "author": "Campbell Barton", | ||||
| "blender": (2, 65, 0), | "blender": (2, 65, 0), | ||||
| "location": "3D View > Toolbox", | "location": "3D View > Tool Shelf", | ||||
| "description": "Utilities for 3D printing", | "description": "Utilities for 3D printing", | ||||
| "warning": "", | "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/" | ||||
| "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/" | |||||
| "Scripts/Modeling/PrintToolbox", | "Scripts/Modeling/PrintToolbox", | ||||
| "support": 'OFFICIAL', | "support": 'OFFICIAL', | ||||
| "category": "Mesh"} | "category": "Mesh", | ||||
| } | |||||
| if "bpy" in locals(): | if "bpy" in locals(): | ||||
| Context not available. | |||||
| category = bpy.props.StringProperty( | category = bpy.props.StringProperty( | ||||
| name="Tab Category", | name="Tab Category", | ||||
| description="Choose a name for the category of the panel", | description="Choose a name for the category of the panel", | ||||
| default="3D Printing", | default="Print3D", | ||||
| update=update_panel) | update=update_panel) | ||||
| def draw(self, context): | def draw(self, context): | ||||
| Context not available. | |||||