Reduce padding

This commit is contained in:
2024-01-09 22:05:07 +01:00
parent a6b79fb14c
commit 47f2ccd87d

View File

@@ -89,7 +89,7 @@ void igRenderBTNode(const BzAIBTNode *node, const BzAIBTNodeState *state, i32 de
if (hasState) if (hasState)
color = (ImVec4) {1.0f, 1.0f, 0.5f, 1.0f}; color = (ImVec4) {1.0f, 1.0f, 0.5f, 1.0f};
igTextColored(color, "%*s%s %s", depth * 4, "", igTextColored(color, "%*s%s %s", depth * 2, "",
bzAIBTNodeTypeToStr(type), extraInfo); bzAIBTNodeTypeToStr(type), extraInfo);
while (child) { while (child) {
igRenderBTNode(child, state, depth + 1); igRenderBTNode(child, state, depth + 1);