X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_material.py;h=696622183153a5b0d244d0eda3ca64dafdb74159;hb=976d2564de7c4e6394b3499b30a53a736771c808;hp=81c5e8bfd868480e87b9bdf49b7b216d3b830f19;hpb=9f8b7c740f3251ba5c6d94954431709d149aafae;p=libs%2Fgl.git diff --git a/blender/io_mspgl/export_material.py b/blender/io_mspgl/export_material.py index 81c5e8bf..69662218 100644 --- a/blender/io_mspgl/export_material.py +++ b/blender/io_mspgl/export_material.py @@ -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): @@ -57,14 +53,14 @@ class MaterialExporter: mat_name = material.name+".mat" if mat_name not in resources: if material.type: - resources[mat_name] = self.export_material(material, resources=resources) + resources[mat_name] = self.export_material(material, resources) else: resources[mat_name] = None - def export_technique(self, material, *, resources): + def export_technique(self, material, resources): return create_technique_resource(material, resources) - def export_material(self, material, *, resources): + def export_material(self, material, resources): from .datafile import Resource, Statement, Token mat_res = Resource(material.name+".mat", "material") @@ -137,5 +133,5 @@ class MaterialAtlasExporter: resources[mat_name] = mat_res - def export_technique(self, material_atlas, *, resources): + def export_technique(self, material_atlas, resources): return create_technique_resource(material_atlas, resources)