With() action does not use transitions when given move, ease

In this forum we discuss the future of Ren'Py, both bug fixes and longer-term development. Pre-releases are announced and discussed here.
Post Reply
Message
Author
User avatar
Empish
Veteran
Posts: 221
Joined: Thu Jan 14, 2016 9:52 pm
Projects: Efemural Hearts, It Ends With Graduation
itch: empish
Contact:

With() action does not use transitions when given move, ease

#1 Post by Empish »

Hey, I'm looking into hovering effects for someone. Specifically looking at the move and ease ones. They don't seem to be activated with the With(transition) action in screen code, even when I tried defining my own MoveTransition.

Note that the transition happens fine when I use something like dissolve instead.

Code: Select all

image header thing = "someimage.png"
default header_toggle = False

screen some_screen:
	textbutton "Do Header":
        action NullAction()
        hovered [SetVariable("header_toggle", True), With(moveintop)]
        unhovered [SetVariable("header_toggle", False), With(moveouttop)]
        xalign 0.5
        yalign 0.75

    if header_toggle:
        add "header thing"
It doesn't give any errors, but rather just acts as if there was no With action there at all. I've tried with a variety of the move and ease transitions.

Post Reply

Who is online

Users browsing this forum: No registered users