X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=blender%2Fio_mspgl%2Fexport_material.py;h=bf7e2b3f5b8d4824dc3a132b75ff93a93b0cdce8;hb=160293feec7b0b976856685153cd24c7f1ce9492;hp=6abd78c2d05b8157a429405c02e8ad208a772448;hpb=f241ccca7d0d3f3073a948377bd557a70aa8f1d2;p=libs%2Fgl.git diff --git a/blender/io_mspgl/export_material.py b/blender/io_mspgl/export_material.py index 6abd78c2..bf7e2b3f 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): @@ -69,7 +65,7 @@ class MaterialExporter: mat_res = Resource(material.name+".mat", "material") if material.type!="pbr" and material.type!="unlit": - raise Exception("Can't export unknown material type "+material.type) + raise Exception("Can't export material {} of unknown type {}".format(material.name, material.type)) mat_res.statements.append(Statement("type", Token(material.type))); for p in material.properties: