Search found 2 matches

by Artemaniac
Thu Dec 06, 2018 9:20 pm
Forum: Ren'Py Questions and Announcements
Topic: How would i make an image shake when hovered in a screen?
Replies: 2
Views: 342

Re: How would i make an image shake when hovered in a screen?

Use 'on hover' statement with ATL. I haven't seen exactly how it is in the game you mention, but this is an example: transform shake_twice: on hover: linear .02 xoffset 10 linear .02 xoffset 0 linear .02 xoffset -10 linear .02 xoffset 0 repeat 2 Then in your screen: add 'shaking_image' at shake_twi...
by Artemaniac
Wed Dec 05, 2018 9:23 pm
Forum: Ren'Py Questions and Announcements
Topic: How would i make an image shake when hovered in a screen?
Replies: 2
Views: 342

How would i make an image shake when hovered in a screen?

I have an image displayed on my main menu screen. How would i go about making the image shake when the mouse hovers over it? (two times) I am trying to make the shake similar to the HIVESWAP FRIENDSIM menu logo shake, because it was made in Ren'py as well. Can anyone please help? Thank you in advance.