Fix world-matrix calculation (resolves #7)
This commit is contained in:
parent
ac990359cb
commit
051c359675
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue