Debug Log removed

This commit is contained in:
s-prechtl 2022-06-03 15:05:33 +02:00
parent de6ac7384a
commit efc7a3deaf
2 changed files with 0 additions and 3 deletions

View file

@ -14,8 +14,6 @@ public class TileController : MonoBehaviour {
Vector3 screen = camera.ViewportToWorldPoint(new Vector3(1, 1, camera.nearClipPlane));
int x = Convert.ToInt32(Math.Ceiling(screen.x));
int y = Convert.ToInt32(Math.Ceiling(screen.y));
Debug.Log(screen);
for(int xx = -x; xx <= x; xx++) {
for(int yy = -y; yy <= y; yy++) {
if(tile != null) {