소스 검색

Merge pull request #3 from antoni4040/antoni4040

Fixed small issue that created errors.
Rémi Verschelde 7 년 전
부모
커밋
a12c20eb4b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      io_scene_godot/export_godot.py

+ 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: