Make a sprite fade to white in animation player

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By FateAce
:warning: Old Version Published before Godot 3 was released.

I want to make a sprite turn completly white so it’s just a silhouette, then fade out of existence.

I know how to make sprite fade using the animation player, but making it turn white alludes me. Does anyone know how to do this?

:bust_in_silhouette: Reply From: volzhs

A way to change color first.

  1. Add modulate key at first frame
  2. Move to desired frame in animation editor
  3. Click modulate with Sprite
  4. Change RAW Mode ON
  5. Then RGB value is changed to 1
  6. Change this 1 value to 10
  7. Add modulate key
  8. Play it

A way to change color later.

  1. Add modulate key at first frame
  2. Add modulate key at desired frame
  3. Ctrl click second modulate key in Animation editor
  4. You can see Color picker when click white color at Value field
  5. Change RAW Mode ON
  6. Then RGB value is changed to 1
  7. Change this 1 value to 10
  8. Play it.

This is exactly what I’m looking for. Thanks.

FateAce | 2016-02-29 15:14