Revert "perspective: fix worldToCanvas to convert from local to scene coords correctly"

This reverts commit 4ecf45f19e.
This commit is contained in:
Adam
2018-07-27 09:15:15 -04:00
parent d7b78936de
commit 41996c181e

View File

@@ -98,7 +98,7 @@ public class Perspective
*/
public static Point worldToCanvas(@Nonnull Client client, int x, int y, int plane, int zOffset)
{
return worldToCanvas(client, x, y, plane, x >>> LOCAL_COORD_BITS, y >>> LOCAL_COORD_BITS, zOffset);
return worldToCanvas(client, x, y, plane, x, y, zOffset);
}
/**