public static void RenderDebug(JsonValue root) { DoUsesUse.RenderDebug(root); ImGui.Separator(); var option = root["opt"].Int(0); if (ImGui.Combo("If", ref option, options, options.Length)) { root["opt"] = option; } }
public static void RenderDebug(JsonValue root) { root.InputFloat("Time", "time", 1f); ImGui.Separator(); DoUsesUse.RenderDebug(root); }