Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/khlebobul/flame_realtime_shooting
Flame realtime shooting game with Supabase
https://github.com/khlebobul/flame_realtime_shooting
dart flutter flutter-flame gam realtime supabase
Last synced: 25 days ago
JSON representation
Flame realtime shooting game with Supabase
- Host: GitHub
- URL: https://github.com/khlebobul/flame_realtime_shooting
- Owner: khlebobul
- Created: 2024-05-18T10:43:37.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-18T10:51:34.000Z (9 months ago)
- Last Synced: 2024-11-14T19:43:14.365Z (3 months ago)
- Topics: dart, flutter, flutter-flame, gam, realtime, supabase
- Language: Dart
- Homepage:
- Size: 661 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flame realtime shooting game with Supabase
#### Guide: [How to build a real-time multiplayer game with Flutter Flame](https://supabase.com/blog/flutter-real-time-multiplayer-game)
### Demo
https://github.com/khlebobul/flame_realtime_shooting/assets/77191581/2fb9f08d-03ca-40b9-be9e-2eaf9891dd91### [Run flutter app on multiple devices](https://www.youtube.com/watch?v=-35E-oCXDUs)
My launch.json ⬇️
```json
{
"version": "0.2.0",
"configurations": [
{
"name": "flame_realtime_shooting",
"request": "launch",
"type": "dart"
},
{
"name": "Chrome",
"request": "launch",
"type": "dart",
"deviceId": "chrome",
},
{
"name": "ios",
"request": "launch",
"type": "dart",
"deviceId": "your device id",
},
{
"name": "flame_realtime_shooting (release mode)",
"request": "launch",
"type": "dart",
"flutterMode": "release"
}
],
"compounds": [
{
"name": "All Devices",
"configurations": ["ios", "Chrome"]
}
]
}
```