You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pinball/lib/game/components/ball.dart

29 lines
714 B

import 'package:flame_forge2d/body_component.dart';
import 'package:flutter/material.dart';
import 'package:forge2d/forge2d.dart';
class Ball extends BodyComponent {
Ball({
required Vector2 position,
}) : _position = position {
// TODO(alestiago): Use asset instead of color when provided.
paint = Paint()..color = const Color(0xFFFFFFFF);
}
final Vector2 _position;
@override
Body createBody() {
final shape = CircleShape()..radius = 2;
final fixtureDef = FixtureDef(shape)..density = 1;
final bodyDef = BodyDef()
..userData = this
..position = _position
..type = BodyType.dynamic;
return world.createBody(bodyDef)..createFixture(fixtureDef);
}
}