-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
True keyboard mode #17
Comments
Have you some example to have a better understanding ? |
Basically a mode where when you boot, you don't have 2 joypads, but instead each key on the keyboard is a different event. For example, instead of |
So if I want to make a game where you move using the W A S D keys (Z Q S D in France I think) I would have something like (in Python): if btn(119): # or more easily btn(ord('w'))
# go up
elif btn(115):
# go down
... |
It seems a good idea, I need to figure out how to do that |
You could try this feature with: |
|
@Tenchi2xh do you want to test it ? |
Something I felt terribly missing from the original Pico8 was the lack of true keyboard support. I had tons of ideas that I could just not implement because there was no real keyboard input (create a tiny terminal, text adventure, an OS etc.)
Could it be possible to have a true keyboard mode, either activated programatically or with an environment variable?
That would effectively extend PX8 to be a Fantasy Microcomputer in addition to a Fantasy Console!
The text was updated successfully, but these errors were encountered: