Last active
November 18, 2017 08:44
-
-
Save ongaeshi/43d1f73898666f1f85d29aa9c52aba50 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| font = Font.new(30) | |
| camera = Camera2D.new | |
| while System.update do | |
| camera.update | |
| camera.transform do | |
| font["Camera2D Test"].draw_at(320, 200) | |
| Circle.new(320, 240, 50).draw([255, 0, 0, 127]) | |
| end | |
| camera.draw(Palette::Orange) | |
| end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment