Skip to content

Commit

Permalink
fix #5041. node Find UV Coord on Surface variable unused in for.
Browse files Browse the repository at this point in the history
  • Loading branch information
satabol committed Nov 2, 2023
1 parent 7c82f43 commit 2aa4c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodes/object_nodes/points_from_uv_to_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def UV(self, object):
polygons_new_pol.append(li)
vertices_dict[li] = list(loop[uv_layer].uv[:])+[0]
polygons_new.append(polygons_new_pol)
vertices_new = [i for i in vertices_dict.values()]
vertices_new = [i for i in vertices_dict.values()]
np_ver = np.array(vertices_new)
vertices_new = np_ver.tolist()
bm.clear()
Expand Down

0 comments on commit 2aa4c0e

Please sign in to comment.