summaryrefslogtreecommitdiff
path: root/scripts/Utils/Grid.cs
blob: bf5d98f8a830fc08d3e66de788d80f37d0dd2788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using Godot;
using System;

public partial class Grid : GodotObject {
	public static readonly Vector2I tileSize = new(16, 16);

	public static Vector2I WorldToGrid(Vector2 coord) {
		return (Vector2I)(coord / tileSize);
	}

	public static Vector2 GridToWorld(Vector2I coord) {
		return coord * tileSize;
	}
}