removeCollisionComponent method
Removes the collision component from entity
, meaning this will no longer be tested when testCollisions or queuePositionUpdate is called with another entity.
Implementation
@override
Future<void> removeCollisionComponent(ThermionEntity entity) async {
await _shim.removeCollisionComponent(entity).toDart;
}