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 'io_scene_map/__init__.py')
-rw-r--r--io_scene_map/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/io_scene_map/__init__.py b/io_scene_map/__init__.py
index 8db02a7f..d3295998 100644
--- a/io_scene_map/__init__.py
+++ b/io_scene_map/__init__.py
@@ -40,8 +40,8 @@ if "bpy" in locals():
import bpy
-from bpy.props import StringProperty, BoolProperty, FloatProperty, EnumProperty
-from bpy_extras.io_utils import ExportHelper, axis_conversion
+from bpy.props import StringProperty
+from bpy_extras.io_utils import ExportHelper
class ExportMAP(bpy.types.Operator, ExportHelper):
@@ -54,8 +54,8 @@ class ExportMAP(bpy.types.Operator, ExportHelper):
filter_glob = StringProperty(default="*.map", options={'HIDDEN'})
def execute(self, context):
- import math
- from mathutils import Matrix
+ # import math
+ # from mathutils import Matrix
if not self.filepath:
raise Exception("filepath not set")