Update tutorial/2_sprite_animations_gestures/README.md (#805)

* Update tutorial/2_sprite_animations_gestures/README.md

Removed the premature usage of the TapDetector mixin, which is addressed later in the tutorial.

* Update CHANGELOG.md

Added change to the changelog.
This commit is contained in:
Josh Kautz
2021-05-21 15:49:59 -05:00
committed by GitHub
parent 5503db4e5f
commit 08a9d680cd
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@
- Fix Text Rendering not working properly - Fix Text Rendering not working properly
- Add more useful methods to the IsometricTileMap component - Add more useful methods to the IsometricTileMap component
- Add Hoverables - Add Hoverables
- Brief semantic update to second tutorial.
## [1.0.0-rc10] ## [1.0.0-rc10]
- Updated tutorial documentation to indicate use of new version - Updated tutorial documentation to indicate use of new version

View File

@ -43,7 +43,7 @@ void main() {
runApp(GameWidget(game: myGame)); runApp(GameWidget(game: myGame));
} }
class MyGame extends Game with TapDetector { class MyGame extends Game {
@override @override
void update(double dt) { void update(double dt) {