Wesley Smith

Results 7 comments of Wesley Smith

Can you give me a test case? I'm happy to merge this when any know issues are fixed.

Thanks. I'll take a look and fix. It has been a while since I used Lua.

@otmanon It's not the clearest API, but the way ImGui is designed you use the following pattern: ``` LEFT_ARROW = imgui.GetKeyIndex(imgui.ImGuiKey_LeftArrow) def cb(): if imgui.IsKeyPressed(LEFT_ARROW): print("LEFT") pscope.set_user_callback(cb) ``` ImGui has...

> My main challenge is that managing cpp + unit tests + docs + python bindings mean that even simple changes can easily take 2+ hours This makes a lot...

Oh, cool. I have bindings for a large fraction of ImGui. I'll take a look at what you've done and see about making PRs there/

Well, I was starting with the most basic maps when using this lib to get a feel for it. I would use it. You need it in order to clean...

FYI, the fix: https://github.com/flexible-collision-library/fcl/pull/550