I’d like to have an animation effect where upon I click my screen and the character changes “costume” so he can appear to flap his wing.
I can’t seem to find any way to change costume or look like in Scratch, can this be done?
I’d like to have an animation effect where upon I click my screen and the character changes “costume” so he can appear to flap his wing.
I can’t seem to find any way to change costume or look like in Scratch, can this be done?
Hi @asteinberg! Try use the this example (Use the two sprites for the player):
Event #1:
Player1/Appearance/Set Hidden/No
Player2/Position/Set Position To Object/Player1
Event #2
Button/Sensing/Touch Held
Player1/Appereance/Opacity/100%
Player2/Appereance/Opacity/0%
Event #3
Button/Sensing/Touch Up
Player1/Appereance/Opacity/0%
Player2/Appereance/Opacity/100%
AWESOME.
Didn’t think to use the touch held touch up feature! Will try to implement this today.