]> git.tdb.fi Git - libs/gl.git/blobdiff - blender/io_mspgl/export_material.py
Revise export function parameter orders
[libs/gl.git] / blender / io_mspgl / export_material.py
index 81c5e8bfd868480e87b9bdf49b7b216d3b830f19..6abd78c2d05b8157a429405c02e8ad208a772448 100644 (file)
@@ -57,14 +57,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 +137,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)