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

Anonymous50000

Newbie
Modder
Jan 4, 2018
97
351
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
10,369
15,284
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
97
351
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
97
351
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