screenToWorld method

Vector2 screenToWorld(
  1. Vector2 screenCoordinates
)
inherited

Takes coordinates in the screen space and returns their counter-part in the world space.

Implementation

Vector2 screenToWorld(Vector2 screenCoordinates) {
  return unprojectVector(screenCoordinates);
}