- May 26, 2017
- 838
- 2,810
Hello,
I'm modding a game. A screen is called: it shows multiple elements and hides went clicked.
I want to modify the screen so it doesn't appear when in a replay like:
I'm not sure to understand how call_screen works and I can't find the solution.
I'm currently using a workaround with
I'm modding a game. A screen is called: it shows multiple elements and hides went clicked.
Python:
call screen "screen"
screen "screen":
"multiple elements"
button action Return()
Python:
screen "screen":
if _in_replay:
"RETURN"
else:
"multiple elements"
button action Return()
I'm currently using a workaround with
timer 0.1 action Return()
.