Rename Tapable to Tappable (#868)

This commit is contained in:
Lukas Klingsbo
2021-07-07 10:48:58 +02:00
committed by GitHub
parent c7d48bc16d
commit 1e79a42161
19 changed files with 82 additions and 81 deletions

View File

@ -171,7 +171,7 @@ Finally, we just render it on the game `render` function:
You now should see the button on the screen, but right now, it is pretty much useless as it has no action at all.
So, to change that, we will now add some interactivity to our game and make the button tapable/clickable.
So, to change that, we will now add some interactivity to our game and make the button tappable/clickable.
Flame provides several input handlers, which you can check with more in depth on [our docs](https://github.com/flame-engine/flame/blob/main/doc/input.md). For this tutorial, we will be using the `TapDetector` which enables us to detect taps on the screen, as well as mouse click when running on web or desktop.