Switched to Int32 vector from Point

This commit is contained in:
Simon Lübeß
2021-03-03 16:34:25 +01:00
parent 7a777bb55e
commit 9d52f77b43
4 changed files with 45 additions and 112 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ namespace Sandbox.VoxelFun
public const int SizeY = 256;
public const int SizeZ = 16;
public const Point3 Size = .(SizeX, SizeY, SizeZ);
public const Int32_3 Size = .(SizeX, SizeY, SizeZ);
public const Vector3 VectorSize = .(SizeX, SizeY, SizeZ);
public uint8[SizeX][SizeY][SizeZ] Data;