Compare commits

..

2 Commits
5.0.1 ... 5.0.2

Author SHA1 Message Date
Colin Basnett
e9b09dc651 Incremented version to 5.0.2 2023-08-09 21:03:49 -07:00
Colin Basnett
ed89e78927 Fix #43: Wedges can now address vertices with indices greater than 65535 2023-08-09 20:14:24 -07:00
2 changed files with 2 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
bl_info = {
"name": "PSK/PSA Importer/Exporter",
"author": "Colin Basnett, Yurii Ti",
"version": (5, 0, 1),
"version": (5, 0, 2),
"blender": (3, 4, 0),
"description": "PSK/PSA Import/Export (.psk/.psa)",
"warning": "",

View File

@@ -16,8 +16,7 @@ class Psk(object):
class Wedge16(Structure):
_fields_ = [
('point_index', c_uint16),
('padding1', c_int16),
('point_index', c_uint32),
('u', c_float),
('v', c_float),
('material_index', c_uint8),