diff options
Diffstat (limited to '2d/sprite.scm')
-rw-r--r-- | 2d/sprite.scm | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/2d/sprite.scm b/2d/sprite.scm index 6fd366c..b8c1472 100644 --- a/2d/sprite.scm +++ b/2d/sprite.scm @@ -343,9 +343,6 @@ size." "Adds a textured quad to the sprite batch." (apply %sprite-batch-draw *sprite-batch* args)) -;; TODO add transformation logic for scaling and rotating. -;; TODO add support for colors -;; TODO add support for different blending modes. (define* (%sprite-batch-draw batch texture x y width height #:optional #:key (center-x 0) (center-y 0) (scale-x 1) (scale-y 1) (rotation 0) |