coordinates property
The player's coordinates.
Implementation
Point<double> get coordinates => _coordinates;
Set the player's coordinates.
Implementation
@mustCallSuper
set coordinates(final Point<double> value) {
_coordinates = value;
game.setListenerPosition(value.x, value.y, 0.0);
}