mirror of
https://github.com/flame-engine/flame.git
synced 2025-11-02 20:13:50 +08:00
There was a small code Error in Step 2 of the Space Shooter Tutorial
```
the onPanUpdate method looked like this
void onPanUpdate(DragUpdateInfo info) {
player.move(info.delta.global);
}
```
but it should look like this
```
void onPanUpdate(DragUpdateInfo info) {
player.move(info.delta.global);
}
```