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:
authorCampbell Barton <ideasman42@gmail.com>2012-02-05 13:40:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-05 13:40:34 +0400
commitf5e765036da06edfa5b080b8a3395071e1b7ea75 (patch)
tree63854db8ae972e2ac453d01a6d202e990839d895 /io_scene_x3d/__init__.py
parent2300ca090ab57fb238ce86669bd17724168b1dd8 (diff)
Code Cleanup: pep8
Diffstat (limited to 'io_scene_x3d/__init__.py')
-rw-r--r--io_scene_x3d/__init__.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py
index 3a102e14..5a7429f9 100644
--- a/io_scene_x3d/__init__.py
+++ b/io_scene_x3d/__init__.py
@@ -136,7 +136,8 @@ class ExportX3D(bpy.types.Operator, ExportHelper):
)
name_decorations = BoolProperty(
name="Name decorations",
- description="Add prefixes to the names of exported nodes to indicate their type",
+ description=("Add prefixes to the names of exported nodes to "
+ "indicate their type"),
default=True,
)
use_h3d = BoolProperty(
@@ -144,7 +145,7 @@ class ExportX3D(bpy.types.Operator, ExportHelper):
description="Export shaders for H3D",
default=False,
)
-
+
axis_forward = EnumProperty(
name="Forward",
items=(('X', "X Forward", ""),
@@ -156,7 +157,7 @@ class ExportX3D(bpy.types.Operator, ExportHelper):
),
default='Z',
)
-
+
axis_up = EnumProperty(
name="Up",
items=(('X', "X Up", ""),