]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/export_scene.py
Remove the external tech exporter property
[libs/gl.git] / blender / io_mspgl / export_scene.py
index 77d7d09bd9761543fca3e159ae1be5507687be5f..a538f4da3ba0f7cd6126e923d5d36693cb3b5a4a 100644 (file)
@@ -3,7 +3,6 @@ import os
 
 class SceneExporter:
        def __init__(self):
-               self.external_tech = True
                self.resource_collection = True
 
        def export(self, context, out_file):
@@ -18,7 +17,6 @@ class SceneExporter:
 
                from .export_object import ObjectExporter
                object_export = ObjectExporter()
-               object_export.external_tech = self.external_tech
 
                object_prototypes = {}
                unique_objects = []