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

Unity not support Gif. You have 2 options: Split animation and use Animator: there you have a nice howto 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]; }

Google Sceneform – Is it deprecated? Any replacement?

I use in my ARCore project Sceneform. It seems that this project is now mentioned as Archived by Google. More info we can find here or on this page. I don’t understand if Google really abandoned this SDK, or if it is – or will be – directly integrated in ARCore SDK? Thanks for any information concerning the future of … Read more