[Solved] Tween or fade out effect?

hello is possible to tween or fade out an effect from enabled to disabled?

That wouldn’t make sense - an effect is either on or off. There are no inbetween stages. A tween changes state gradually, from initial to final,and has many inbetween stages.

I’m trying to emulate this effect for enemies that are hit but not sure how?

effect example
Animation

You could experiment with these tweens:
image

You can simulate it using the Adjustment effect :

Add a tween behaviour and use the following event actions :

To get :

Flash

2 Likes

thanks for the reply EDIT ok got it working had to change the effect parameter to (number) but I have a problem with player bullet collision the effect stops when half brightness on enemies?

example
Animation

events

When you check for bullet collision, try removing the flash tween if it already exists first, and then add a new tween.

as an aside - if you put all your playerbullets in a object group, you can check for collision with that group, rather than having the multiple collision checks.

1 Like

thanks I’m having trouble understanding how to implement this? I messed around with conditions and actions and couldn’t get it to work?

events

I wouldn’t even put the tween “flash” not exists as a condition in the first event. Just have "Remove tween “flash” from beet as an action immediately before creating the tween. Like :

1 Like

yes that worked great thanks again!