Fix world-matrix calculation (resolves #7)

This commit is contained in:
~keith 2022-02-14 18:45:25 +00:00
parent ac990359cb
commit 051c359675
Signed by: keith
GPG Key ID: 5BEBEEAB2C73D520
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@
(defmethod world-matrix ((this actor))
"The local-to-world-space transformation matrix for this actor."
(if [this parent]
(m* [this matrix] [this parent world-matrix])
(m* [this parent world-matrix] [this matrix])
[this matrix]))
(defmethod local-matrix ((this actor))