Tutorial How to Create Zygisk MOD Menu

Sunghera

Platinian
Jan 4, 2024
11
1
3
26
If we already have made a mod menu with the LGL Template (along with BNM), what's the simplest way to transition into a Zygisk module?
 

bkR57

Platinian
Jan 21, 2024
16
3
3
34
is it possible to have the gradle and android sdk version to use to avoid shitty error ?
Currently the template link is outdated and not compiling anymore with both gradle and android sdk latest version
 

xsong

Platinian
May 10, 2019
47
220
183
4055 green isle way michigan
Maybe there is also a resize event you can listen for. Not sure.

Try to move that DisplaySize calculation out of the setupFunction to be sure it scaled correctly all the time.
C++:
    eglQuerySurface(dpy, surface, EGL_WIDTH, &glWidth);
    eglQuerySurface(dpy, surface, EGL_HEIGHT, &glHeight);
    io.DisplaySize = ImVec2((float) glWidth, (float) glHeight);
I have same problem with this, did you fix it ?