📝 Edit page
➕ Add page
Pyxel
Key links
- 👨💻 Repo:
- 📦 Package URL: https://pypi.org/project/pyxel/
You can make a game and it also supports making 8-bit music and graphics for use in your game.
e.g.
import pyxel
pyxel.init(160, 120)
def update():
if pyxel.btnp(pyxel.KEY_Q):
pyxel.quit()
def draw():
pyxel.cls(0)
pyxel.rect(10, 10, 20, 20, 11)
pyxel.run(update, draw)