Ren'Py renpy vpunch not working

monkeyposter_7

Thirsty for my Guest
Game Developer
Nov 23, 2018
330
1,181
i might be doing wrong, but i can't figure it out

i tried many variations like:

scene 0000 with vpunch
pause
show 0000 with vpunch
pause

and without pause etc. and it doesnt do anything in the game (i did reload lol)
 

monkeyposter_7

Thirsty for my Guest
Game Developer
Nov 23, 2018
330
1,181
Have you perhaps enabled the "Skip Transitions" option within the game's preferences screen?
It think that disables all transitions... including vpunch.

YES! omg, so it was working all along...
im such a dolt

thank you tho!
 

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Donor
Respected User
Jun 10, 2017
10,364
15,281
where is this option in the script.rpy?
It's in the preferences menu.

But it's also addressable from the code. At start time with , and at runtime with .
 
  • Like
Reactions: 79flavors

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Donor
Respected User
Jun 10, 2017
10,364
15,281
Happened to me too! Was so confused why it's not working
Well, since we are talking about this, a reminder:

The pause statement is often using a transition. What mean that you, and your players, can encounter the same kind of problem.
Prefer the use of renpy.pause(), that will always be a real, totally independent, pause.