Add different debug modes (off, detail, detail_wireframe)

This commit is contained in:
James Seibel
2021-08-28 11:04:59 -05:00
parent c48d409015
commit 9277b3ad38
9 changed files with 84 additions and 60 deletions
@@ -259,7 +259,7 @@ public class ClientProxy
//f4 is key 293, the 1 action mean that the key just got pressed
if(event.getKey() == 293 && event.getAction() == 1)
{
LodConfig.CLIENT.debugMode.set(!LodConfig.CLIENT.debugMode.get());
LodConfig.CLIENT.debugMode.set(LodConfig.CLIENT.debugMode.get().getNext());
}
}