Skip to content

Commit

Permalink
Update Chunks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Captian-obvious authored Dec 4, 2023
1 parent 908443d commit 5ef5d9e
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions Chunks.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def PROP(chunk, rbxm):
matricies[i]=[r00, r10, r20, r01, r11, r21, r02, r12, r22]
##endif
##end
elif (typeID=0x11):
elif (typeID==0x11):
#QUATERNIONS
quaternions=[]
for i in range(sizeof):
Expand Down Expand Up @@ -237,14 +237,13 @@ def PROP(chunk, rbxm):
##end
elif (typeID==0x15):
#NumberSequence
for i in range(sizeof):
kpCount=buffer.readNumber("<I4")
for i in range(sizeof):kpCount=buffer.readNumber("<I4")
kp=createTable(kpCount)
for c in range(len(kp)):
kp[c-1]=[buffer.readNumber("<f"),buffer.readNumber("<f"),buffer.readNumber("<f")]
##end
properties[i-1]=newNumberSequence(kpCount,kp)
##end
for c in range(len(kp)):
kp[c-1]=[buffer.readNumber("<f"),buffer.readNumber("<f"),buffer.readNumber("<f")]
##end
properties[i-1]=newNumberSequence(kpCount,kp)
##end
##endif
##end
def SSTR(chunk, rbxm):
Expand Down

0 comments on commit 5ef5d9e

Please sign in to comment.