Ren'Py [Solved]Need help to display a reactive box on top of screens like Lain's Mod

Anonymous50000

Newbie
Modder
Jan 4, 2018
98
373
279
I want to add to my Take Over Cheat a graphical interface that do not require me to change the base game's code.
I want it to not overide the display item's on the screen but just add it.
 

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Donor
Respected User
Jun 10, 2017
12,941
21,527
1,026
I want it to not overide the display item's on the screen but just add it.
Well... It's just a screen that you have to put as overlay, and you just need to position it's content correctly.

Code:
screen myOverlay():
    frame style "empty":
        xpos 100
        ypos 100
        [...]

init python:
    config.overlay_screens.append( "myOverlay" )
 

Anonymous50000

Newbie
Modder
Jan 4, 2018
98
373
279
Well... It's just a screen that you have to put as overlay, and you just need to position it's content correctly.

Code:
screen myOverlay():
    frame style "empty":
        xpos 100
        ypos 100
        [...]

init python:
    config.overlay_screens.append( "myOverlay" )
Well thanks I found the correct reference in renpy.
 

Anonymous50000

Newbie
Modder
Jan 4, 2018
98
373
279
Well... It's just a screen that you have to put as overlay, and you just need to position it's content correctly.

Code:
screen myOverlay():
    frame style "empty":
        xpos 100
        ypos 100
        [...]

init python:
    config.overlay_screens.append( "myOverlay" )
Sorry I forgot to respond you thank guy