Start of block raycasting

This commit is contained in:
Simon Lübeß
2021-02-26 10:58:11 +01:00
parent 4dcf1b5bec
commit cbfbd449ff
6 changed files with 210 additions and 38 deletions
+2
View File
@@ -6,6 +6,8 @@ namespace Sandbox.VoxelFun
public const int SizeY = 256;
public const int SizeZ = 16;
public const Point3 Size = .(SizeX, SizeY, SizeZ);
public uint8[SizeX][SizeY][SizeZ] Data;
}
}