Эх сурвалжийг харах

Fixed small issue that created errors.

Antonis Karvelas 7 жил өмнө
parent
commit
e37814aded

+ 1 - 1
io_scene_godot/export_godot.py

@@ -436,7 +436,7 @@ class GodotExporter:
                     continue
                 float_values = "Vector2Array("
                 first=","                
-                for v in vertices:
+                for v in s.vertices:
                     try:
                         float_values += " {}, {}".format(v.uv[i].x, v.uv[i].y)+first
                     except: