flame_forge2d_tiled 0.1.0
flame_forge2d_tiled: ^0.1.0 copied to clipboard
A package that combines [Tiled Map Editor](https://www.mapeditor.org) + [Flame Game Engine with Physics](https://github.com/flame-engine/flame)
example/lib/main.dart
import "package:flame/flame.dart";
import "package:flame/game.dart";
import "package:flutter/material.dart";
import "game.dart";
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Flame.device.fullScreen();
await Flame.device.setLandscapeLeftOnly();
runApp(
GameWidget(
game: GameInstance(
tmxFile: "map.tmx",
),
),
);
}