diff options
author | Frederico Linhares <fred@linhares.blue> | 2022-08-31 17:43:57 -0300 |
---|---|---|
committer | Frederico Linhares <fred@linhares.blue> | 2022-08-31 17:43:57 -0300 |
commit | a646fe175c20d9d95c76d28d7f8de88b203a8b94 (patch) | |
tree | 0f42a9c45f514b5cce4469a17999596181fd85b4 /test/src | |
parent | f1f1576543bb4e0f3b9bc4cd0ba4a12a70546c3c (diff) |
feat Add projection to 2D graphics pipeline
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/main.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/main.rb b/test/src/main.rb index 6ac0dde..b153a50 100644 --- a/test/src/main.rb +++ b/test/src/main.rb @@ -68,7 +68,7 @@ end def quit() = CandyGear.quit(); def tick() - $sprite.draw(-1.0, -1.0, -0.70, -0.5); + $sprite.draw(1.0, 1.0, 101.0, 101.0); $instances_rotation.rotate(0.0, BOX_ROTATION_SPEED); $instances.each do |i| $model.draw(i, $instances_rotation); |