* PSK importer now working

* Fleshing out PSA importer (not done yet but getting there)
This commit is contained in:
Colin Basnett
2022-01-14 12:26:35 -08:00
parent d578350980
commit 9fa0780032
11 changed files with 504 additions and 296 deletions

View File

@@ -8,6 +8,11 @@ class Vector3(Structure):
('z', c_float),
]
def __iter__(self):
yield self.x
yield self.y
yield self.z
class Quaternion(Structure):
_fields_ = [
@@ -18,10 +23,10 @@ class Quaternion(Structure):
]
def __iter__(self):
yield self.w
yield self.x
yield self.y
yield self.z
yield self.w
class Section(Structure):