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>2011-01-20 10:52:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-01-20 10:52:45 +0300
commitb99cd4de335fd7ca349cd6a38848d31d28442db3 (patch)
tree6a786419aefb5cab4700d473bc18bb5503b1de24 /io_scene_x3d/__init__.py
parent251e10b5cbeeb1c0c91a02e4faa78d2a7d91dae6 (diff)
fix for exception exporting empty curves. added use_selected option for the operator.
Diffstat (limited to 'io_scene_x3d/__init__.py')
-rw-r--r--io_scene_x3d/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py
index 67d35ce9..987895ad 100644
--- a/io_scene_x3d/__init__.py
+++ b/io_scene_x3d/__init__.py
@@ -63,6 +63,7 @@ class ExportX3D(bpy.types.Operator, ExportHelper):
filename_ext = ".x3d"
filter_glob = StringProperty(default="*.x3d", options={'HIDDEN'})
+ use_selection = BoolProperty(name="Selection Only", description="Export selected objects only", default=False)
use_apply_modifiers = BoolProperty(name="Apply Modifiers", description="Use transformed mesh data from each object", default=True)
use_triangulate = BoolProperty(name="Triangulate", description="Triangulate quads.", default=False)
use_compress = BoolProperty(name="Compress", description="GZip the resulting file, requires a full python install", default=False)