]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/export_material.py
Some minor refactoring of the exporter
[libs/gl.git] / blender / io_mspgl / export_material.py
index 6abd78c2d05b8157a429405c02e8ad208a772448..696622183153a5b0d244d0eda3ca64dafdb74159 100644 (file)
@@ -27,13 +27,9 @@ def create_technique_resource(material, resources):
        return tech_res
 
 class MaterialExporter:
-       def __init__(self):
-               self.inline_texture_data = False
-
        def create_texture_exporter(self):
                from .export_texture import TextureExporter
                texture_export = TextureExporter()
-               texture_export.inline_data = self.inline_texture_data
                return texture_export
 
        def export_technique_resources(self, material, resources):