Search found 3 matches

by enduine
Wed Sep 08, 2021 9:41 am
Forum: Ren'Py Questions and Announcements
Topic: Imagebutton with two moving images
Replies: 7
Views: 756

Re: Imagebutton with two moving images

You might want to use xffset instead of xpos in your transform, try that: transform auto_move: on hover: linear 0.3 xoffset -150 on idle: linear 0.3 xoffset 0 And removing focus_mask True where you make button If that wont help, try changing how you make your button, for example: button: xsize 154 ...
by enduine
Wed Sep 08, 2021 2:32 am
Forum: Ren'Py Questions and Announcements
Topic: Imagebutton with two moving images
Replies: 7
Views: 756

Re: Imagebutton with two moving images

You've defined auto_slide wrong, if you want to declare it with ATL, there is At(), you can use it like image auto_slide = At("auto_text.png", auto_move) You can read more about it here: https://www.renpy.org/doc/html/displayables.html#At I didn't know that! Thanks! Certainly it will be u...
by enduine
Tue Sep 07, 2021 11:27 am
Forum: Ren'Py Questions and Announcements
Topic: Imagebutton with two moving images
Replies: 7
Views: 756

Imagebutton with two moving images

Hi! I'm fairly new to Renpy and programming in general and ran into a problem. I would like to change the quick menu buttons into animated imagebuttons. When the button is idle we should see an arrow (like on the first screenshot), and when we hover it text should slide from underneath (like on the ...