You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see no way to pass in my callback in the function, nor is there a ImGui.InputTextEx function.
In the ImGui demo, the final argument is used for the callback, but this is missing for this plugin. if (ImGui::InputText("Input", InputBuf, IM_ARRAYSIZE(InputBuf), input_text_flags, &TextEditCallbackStub, (void*)this)) from imgui_demo.cpp
Am I missing something or is this feature not implemented yet? Thanks.
The text was updated successfully, but these errors were encountered:
I'm trying to use the callbacks for the text input. I see the follow flags in the documentation:
I see no way to pass in my callback in the function, nor is there a
ImGui.InputTextEx
function.In the ImGui demo, the final argument is used for the callback, but this is missing for this plugin.
if (ImGui::InputText("Input", InputBuf, IM_ARRAYSIZE(InputBuf), input_text_flags, &TextEditCallbackStub, (void*)this))
fromimgui_demo.cpp
Am I missing something or is this feature not implemented yet? Thanks.
The text was updated successfully, but these errors were encountered: