migrate blocks interaction (scripting) to global chunks storage (WIP)
This commit is contained in:
@@ -269,6 +269,7 @@ void Hud::updateHotbarControl() {
|
||||
|
||||
void Hud::updateWorldGenDebugVisualization() {
|
||||
auto& level = frontend.getLevel();
|
||||
auto& chunks = *level.chunks;
|
||||
auto generator =
|
||||
frontend.getController()->getChunksController()->getGenerator();
|
||||
auto debugInfo = generator->createDebugInfo();
|
||||
@@ -293,7 +294,7 @@ void Hud::updateWorldGenDebugVisualization() {
|
||||
int az = z - (height - areaHeight) / 2;
|
||||
|
||||
data[(flippedZ * width + x) * 4 + 1] =
|
||||
level.chunks->getChunk(ax + ox, az + oz) ? 255 : 0;
|
||||
chunks.getChunk(ax + ox, az + oz) ? 255 : 0;
|
||||
data[(flippedZ * width + x) * 4 + 0] =
|
||||
level.chunksStorage->fetch(ax + ox, az + oz) ? 255 : 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user