Files
flame/doc/tutorials
Florian 75efb0c289 docs: Fix step 2 of space shooter tutorial delta values (#3200)
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);
  }
```
2024-06-19 22:59:01 +02:00
..