mirror of https://github.com/flutter/pinball.git
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.
14 lines
492 B
14 lines
492 B
3 years ago
|
import 'package:flame_forge2d/flame_forge2d.dart';
|
||
|
|
||
|
void beginContact(Forge2DGame game, BodyComponent bodyA, BodyComponent bodyB) {
|
||
|
assert(
|
||
|
bodyA.body.fixtures.isNotEmpty && bodyB.body.fixtures.isNotEmpty,
|
||
|
'Bodies require fixtures to contact each other.',
|
||
|
);
|
||
|
|
||
|
final fixtureA = bodyA.body.fixtures.first;
|
||
|
final fixtureB = bodyB.body.fixtures.first;
|
||
|
final contact = Contact.init(fixtureA, 0, fixtureB, 0);
|
||
|
game.world.contactManager.contactListener?.beginContact(contact);
|
||
|
}
|