예제 #1
0
        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;
            }
        }
예제 #2
0
 public static void RenderDebug(JsonValue root)
 {
     root.InputFloat("Time", "time", 1f);
     ImGui.Separator();
     DoUsesUse.RenderDebug(root);
 }