Esempio n. 1
0
 /**
  * Converts screen coordinates to world coordinates.
  *
  * @param x the x coordinate on screen
  * @param y the y coordinate on screen
  * @return a Vector3 containing the world coordinates (x and y)
  */
 public Vector3 unproject(int x, int y) {
   return parent.getGameScreen().unproject(x, y);
 }