The spawn cords!

how much is on block away from (0,0) for the spawn cords

? each block is 32 pixels.

Each block is 32x32

Going 3 blocks to the left puts you at X=96 (32*3)
Going Down increases the Y, and going Up increases Y.

When spawning things, if it’s a 32x32 sprite spawning it at 96 won’t actually line up with the grid, you’ll need to spawn it at 96+16
That 16 number is from (Sprite Size / 2)


Hovering over a square will give you the coords for it.

It might say something like “5/12”

Which means 5 * 32 (X=160) and 12 * 32 (Y=384)