Page Menu
Home
Search
Configure Global Search
Log In
Files
F21421
blender_3ds_import_fix_uvs_r3261.patch
Public
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Authored By
Alexander Gessler (aramis_acg)
Nov 13 2013, 4:32 PM
Size
816 B
Subscribers
None
blender_3ds_import_fix_uvs_r3261.patch
View Options
Index: import_3ds.py
===================================================================
--- import_3ds.py (revision 3267)
+++ import_3ds.py (working copy)
@@ -328,9 +328,9 @@
if v3 == 0:
v1, v2, v3 = v3, v1, v2
- uvl[pl.loop_start] = contextMeshUV[v1 * 2:(v1 * 2) + 2]
- uvl[pl.loop_start + 1] = contextMeshUV[v2 * 2:(v2 * 2) + 2]
- uvl[pl.loop_start + 2] = contextMeshUV[v3 * 2:(v3 * 2) + 2]
+ uvl[pl.loop_start].uv = contextMeshUV[v1 * 2:(v1 * 2) + 2]
+ uvl[pl.loop_start + 1].uv = contextMeshUV[v2 * 2:(v2 * 2) + 2]
+ uvl[pl.loop_start + 2].uv = contextMeshUV[v3 * 2:(v3 * 2) + 2]
# always a tri
bmesh.validate()
File Metadata
Details
Mime Type
text/x-diff
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
86/9e/3191ad819022f48ed65f9c735f21
Event Timeline
Log In to Comment