How to add .gif Animation in unity Scene ? Does Unity support Animated GIFS?

Unity not support Gif.

You have 2 options:

  1. Split animation and use Animator: there you have a nice howto
  2. Save individual frames and make an array of textures.var frames : Texture[]; var framesPerSecond = 10;function Update() { var index : int = (Time.time * framesPerSecond) % frames.Length; renderer.material.mainTexture = frames[index]; }

Leave a Comment