Heaya
I know this has been hit on before, I’ve run a couple o threads myself on the topic. In the abscence of Quiktime video, We use still images and change them at various speeds to replicate a “movie.”
This is one of Freyrs snippets where I’ve changed “transform” to “Texture2D”
var obj : Texture2D[];
function GetItem(i) {
return obj[i];
}
This enables me to drag and drop Textures into the inspector.
Which is much faster than making a material, then dragging a texture on to that, and assigning that to a varible slot in a change material script.
What Im getting at is;
I have 300+ 128x128 textures in a folder.
Is there a way thru scripting to turn these into a “movie” without having to make a seperate material for each texture?
Or simplified still;
Whats the best way to turn these 300+images into a movie(on a cube or a Gui, either is fine)
Ive re read the previous threads, but I feel as though my efforts here
http://forum.unity3d.com/viewtopic.php?t=2469&highlight=
Are uneccessarily time consuming to construct.
Surely I can have a script in the same folder as the textures and can drag that script onto a gameobject and have the still images flik from one to the next and so on?
Thanks guys
AaronC