Skip to content

Commit

Permalink
Update compressed_animation.py
Browse files Browse the repository at this point in the history
removed comment
  • Loading branch information
Tarcontar authored Jul 28, 2020
1 parent 07b45ad commit 2484ca5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io_mesh_w3d/w3d/structs/compressed_animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def size(include_head=True):
return const_size(44, include_head)

def write(self, io_stream):
write_chunk_head(W3D_CHUNK_COMPRESSED_ANIMATION_HEADER, io_stream, self.size(False)) # 16
write_chunk_head(W3D_CHUNK_COMPRESSED_ANIMATION_HEADER, io_stream, self.size(False))
self.version.write(io_stream)
write_fixed_string(self.name, io_stream)
write_fixed_string(self.hierarchy_name, io_stream)
Expand Down

0 comments on commit 2484ca5

Please sign in to comment.