Skip to content

Commit 236b46b

Browse files
committed
debug f3: color +/- from chunk updates
1 parent 2f98ee5 commit 236b46b

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/de/bixilon/minosoft/gui/rendering/gui/hud/elements/other/debug

1 file changed

+1
-1
lines changed

src/main/java/de/bixilon/minosoft/gui/rendering/gui/hud/elements/other/debug/DebugHUDElement.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class DebugHUDElement(guiRenderer: GUIRenderer) : Element(guiRenderer), Layouted
9292
layout += TextElement(guiRenderer, TextComponent(RunConfiguration.APPLICATION_NAME, ChatColors.RED))
9393
layout += AutoTextElement(guiRenderer) { "FPS §d${context.renderStats.smoothAvgFPS.rounded10}§r, t=§d${context.renderStats.avgDrawTime.avg.format().replace('µ', 'u')}" } // rendering of µ eventually broken
9494
context.renderer[ChunkRenderer]?.apply {
95-
layout += AutoTextElement(guiRenderer) { "C v=${visibility.meshes.sizeString}, l=${loaded.size.format()}, cq=${culledQueue.size.format()}, m=${meshingQueue.size.format()}, mqt=${meshingQueue.tasks.size.format()}/${meshingQueue.tasks.max.format()}, lq=${loadingQueue.size.format()}/${loadingQueue.max.format()}, w=${session.world.chunks.chunks.size.format()} d=+${loadingQueue.updates.format()}|-${unloadingQueue.updates.format()}" }
95+
layout += AutoTextElement(guiRenderer) { "C v=${visibility.meshes.sizeString}, l=${loaded.size.format()}, cq=${culledQueue.size.format()}, m=${meshingQueue.size.format()}, mqt=${meshingQueue.tasks.size.format()}/${meshingQueue.tasks.max.format()}, lq=${loadingQueue.size.format()}/${loadingQueue.max.format()}, w=${session.world.chunks.chunks.size.format()} u=§a+${loadingQueue.updates.format()}|§c-${unloadingQueue.updates.format()}" }
9696
}
9797

9898
layout += context.renderer[EntitiesRenderer]?.let {

0 commit comments

Comments
 (0)