flame_tiled 1.18.3 flame_tiled: ^1.18.3 copied to clipboard
Tiled support for the Flame game engine. This uses the tiled package and provides wrappers and components to be used inside Flame.
import 'package:flame/components.dart';
import 'package:flame/effects.dart';
import 'package:flame/flame.dart';
import 'package:flame/game.dart';
import 'package:flame_tiled/flame_tiled.dart';
import 'package:flutter/widgets.dart' hide Animation, Image;
void main() {
runApp(GameWidget(game: TiledGame()));
}
class TiledGame extends FlameGame {
late TiledComponent mapComponent;
TiledGame()
: super(
camera: CameraComponent.withFixedResolution(
width: 16 * 28,
height: 16 * 14,
),
);
@override
Future<void> onLoad() async {
camera.viewfinder
..zoom = 0.5
..anchor = Anchor.topLeft
..add(
MoveToEffect(
Vector2(1000, 0),
EffectController(
duration: 10,
alternate: true,
infinite: true,
),
),
);
mapComponent = await TiledComponent.load('map.tmx', Vector2.all(16));
world.add(mapComponent);
final objectGroup =
mapComponent.tileMap.getLayer<ObjectGroup>('AnimatedCoins');
final coins = await Flame.images.load('coins.png');
// We are 100% sure that an object layer named `AnimatedCoins`
// exists in the example `map.tmx`.
for (final object in objectGroup!.objects) {
world.add(
SpriteAnimationComponent(
size: Vector2.all(20.0),
position: Vector2(object.x, object.y),
animation: SpriteAnimation.fromFrameData(
coins,
SpriteAnimationData.sequenced(
amount: 8,
stepTime: .15,
textureSize: Vector2.all(20),
),
),
),
);
}
}
}