Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

hey there, is it possible to make the 360 background animated? With frame by frame animation, or a gif or something else?

(+1)

You can change the background with the following script call:

ThreeManager.changeTexture("filename.ext");

Run the above code every x frame in a parallel event and now you have an animated background. Something like so:

ThreeManager.changeTexture("Port_1.png");
Wait: 5 frames
ThreeManager.changeTexture("Port_2.png");
Wait: 5 frames
ThreeManager.changeTexture("Port_3.png");
Wait: 5 frames

Ahh makes sense! Thank you for your reply