1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-16 21:05:12 +00:00

Implement legacy skelanime resources

This commit is contained in:
Dragorn421 2025-02-10 12:02:14 +01:00
parent e0b8f3087d
commit 0ae9f1da89
No known key found for this signature in database
GPG key ID: 381AEBAF3D429335
3 changed files with 229 additions and 27 deletions

View file

@ -394,3 +394,11 @@ class S16ArrayResource(CDataResource):
return f"ARRAY_COUNT({self.symbol_name})"
else:
raise ValueError()
cdata_ext_Vec3f = CDataExt_Struct(
(
("x", CDataExt_Value.f32),
("y", CDataExt_Value.f32),
("z", CDataExt_Value.f32),
)
)