Packages debug tools for use in development of Vintage Story mods. To use this package you need to install it, use methods from DebugWindow static class, and have VSImGui mod of latest version in your mods directory.
$ dotnet add package VSImGui_DebugToolsThis package is meant to be used alongside installed VSImGui mod for Vintage Story.
After called at least once these lines of code will draw window with title Test window, a tab with title test tab and inside this tab: a line of text test text followed by separator and slider that will change value of TestValue property or field.
DebugWidgets.Text(domain: "Test window", category: "test tab", id: 0, text: "test text");
DebugWidgets.Draw(domain: "Test window", category: "test tab", id: 1, () => ImGui.Separator());
DebugWidgets.IntSlider(domain: "Test window", category: "test tab", label: "test slider", min: 0, max: 10, getter: () => testValue, setter: value => TestValue = value);
will be added later