Discussion Touches registering to game

MinimalXenon

Platinian
C++:
HOOKAF(void, Input, void *thiz, void *ex_ab, void *ex_ac)
{
    origInput(thiz, ex_ab, ex_ac);
    ImGui_ImplAndroid_HandleInputEvent((AInputEvent *)thiz);
    return;
}

Has anyone figured out a way to fix the issue where when using the imgui the touches also register to the background (the game)?
 
Back
Top Bottom