Results 683 comments of Daniel Gibson

I know this was already the case in the original PDA editor, but I wonder why the buttons in the left pane use "Add" and "Del" while the others use...

In https://github.com/DanielGibson/dhewm3/tree/imgui-tools I have (based on your branch) integrated the AfEditor and also modified `Com_EditPDAs_f()` in the way I suggested above

> The Decl manager keeps a copy of PDA decl in memory, so even if the file is deleted, it will still get re-created. Interesting. Looks like the idDeclManager doesn't...

You could update your tools-porting branch with my changes (either merge or rebase, I don't care) and continue to work on that. I don't think we need a new PR...

Great to see you working on the particle editor! I've toyed a bit with the AF Editor, and it seems to be in a pretty rough shape. Using it triggers...

I just updated my imgui-tools branch again. It now contains your latest changes and also some new changes from me - most importantly, now if an ImGui window is open,...

> More concretely, I'm looking for an autosuggest widget (listbox where you can either select or type the chosen option). I think here you want to use an `ImGuiTextFilter` and...

Great work so far! > but need to set r_useSoftParticles 0 -- we break it when we modify stages in the editor I couldn't reproduce this, what particle did you...

Regarding editors: zep also looks good! There may even be other ImGui textediting widgets with syntax highlighting; just use the one you think works best and is easiest to integrate...

> I'm using idBlockAlloc for creating tree nodes, IIUC it doesn't call constructors/destructors for reused nodes? Should I worry about this? This depends on what types you allocate with it....