Skip to content

Commit

Permalink
Fix conversion for MMatrix
Browse files Browse the repository at this point in the history
  • Loading branch information
BigRoy committed Jul 16, 2024
1 parent 40dd6c6 commit 784f3ed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/ayon_maya/plugins/publish/extract_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def convert_matrix_to_4x4_list(
"""
result = []
value = list(value)
for i in range(0, len(value), 4):
result.append(list(value[i:i + 4]))
return result
Expand Down

0 comments on commit 784f3ed

Please sign in to comment.