diff options
author | David Thompson <dthompson2@worcester.edu> | 2023-03-26 09:55:11 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2023-03-26 09:55:11 -0400 |
commit | 6030c8533dbecce1f309efaa7b0d8ba8a1b6ced2 (patch) | |
tree | fa66eacb7386ea251052f79263e9f3ce67441c4b | |
parent | 49c57f3477397f4e0676c59e133b56d6a8e8ce1b (diff) |
Use actual position instead of interpolated position for local matrix.
-rw-r--r-- | catbird/node-2d.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/catbird/node-2d.scm b/catbird/node-2d.scm index 4fb454c..d7a81e8 100644 --- a/catbird/node-2d.scm +++ b/catbird/node-2d.scm @@ -158,7 +158,7 @@ (define (refresh-local-matrix node local) (matrix4-2d-transform! local #:origin (origin node) - #:position (render-position node) + #:position (position node) #:rotation (rotation node) #:scale (scale node) #:shear (shear node)) |