Decoupled Chunk data loading/generation and geometry generation

This commit is contained in:
Simon Lübeß
2021-03-19 18:06:40 +01:00
parent a0373366f6
commit 72400e873d
5 changed files with 222 additions and 22 deletions
+3 -2
View File
@@ -1,5 +1,6 @@
using GlitchyEngine.Math;
using GlitchyEngine;
using GlitchyEngine.Math;
namespace Sandbox.VoxelFun
{
class Block
@@ -34,7 +35,7 @@ namespace Sandbox.VoxelFun
*/
public virtual void OnPlacing(Int32_3 blockCoordinate)
{
Log.ClientLogger.Info($"I broke. {{{blockCoordinate}}}");
Log.ClientLogger.Info($"I live! {{{blockCoordinate}}}");
}
}
}