-
Notifications
You must be signed in to change notification settings - Fork 559
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ImGuiKey_ deprecated? #183
Comments
Please tell me what version of ImGui you're using? |
I pulled the latest from master directly at the time, which ended up being ocornut/imgui@a241dc7 Also seems like my latest comment didn't make it to github. I ended up fixing it on my end by taking a few small changes. I only realized after some time that this project isn't drop-in suitable in the way I was doing things. Would be nice if the references to imgui were easier to point to different places when linking/building, for those including imgui on the side, along imgui-node-editor |
Support for extra keys was my extension to ImGui, some time later it landed in library itself. ImGui does have
Idea of integrating it into your code base is that you include sources from root directory only and they should work. Can you tell me if define |
Support for latest ImGui was pushed to |
That was misunderstanding on my part, when I first added this to my project I grabbed some of the example files, but didn't like the external/imgui part, so when I then stumbled over includes pointing at Thanks a ton for the quick response and fix! I'll be using the develop branch then. |
I'm only just getting into IMGui and wanted to check out this project.
I've gotten a small project together with just IMGui that works fine, but adding imgui-node-editor into the mix completely fails with a series of similar-ish errors, one of which is
‘ImGuiKey_’ was not declared in this scope
.After a quick look through the source, it seems that ImGuiKey_ may have been an enum type alias for int type ImGuiKey, which now is just
enum ImGuiKey : int
;. These errors get thrown each timeDECLARE_KEY_TESTER
is expanded.The text was updated successfully, but these errors were encountered: