Your First Flutter Flame Game

Mar 6 2024 · Dart 3, Flutter 3.10.1, Android Studio 2021.3.1 or higher, Visual Studo Code 1.7.4 or higher

Part 2: Effects & User Input

09. Understand User Input

Episode complete

Play next episode

Next
About this episode
Leave a rating/review
See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 08. Move Meteorites Around Next episode: 10. Add Bullet Component

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 09. Understand User Input

Check out Flame’s documentation about inputs.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

When a player interacts with any game, they perform input events that the game interpretes and responds to accordingly.

Demo

MeteormaniaGame

Let’s add a couple of mixins to MeteormaniaGame

with TapCallbacks, DragCallbacks
@override
void onTapUp(TapUpEvent event) {
  print('Tap!');
}
@override
void onDragUpdate(DragUpdateEvent event) {
  print('Drag! ${event.delta}');
}