imgui_lua_bindings
imgui_lua_bindings copied to clipboard
Function bindings for ImGui in lua
+ Remove reference to undeclared impl_Button
Hello, someone know a program wich include this binding? I don't really know how to start to implement it in my app
Maybe I am just being dumb, but I am trying the README example to draw primitives (which I know for a fact can be done with the Lua Bindings): ```...
https://github.com/patrickriordan/imgui_lua_bindings/blob/a452b9cdfd7db331b29a57ca132687a5211599df/imgui_iterator.inl#L184
Hello, I believe return values should be inverted, cases like: `status, floatValue = imgui.SliderFloat("SliderFloat", floatValue, 0.0, 1.0);` Would be much more efficient as: `floatValue, status = imgui.SliderFloat("SliderFloat", floatValue, 0.0, 1.0);`...
Several bugs and regex issues fixed in the parser script; number of supported functions increased from 203 to 292. Now handles line-endings so should work on both Windows and Mac/Linux....