I know how to make a movietexture animate within game space, but when i apply it as a gui element, with the GUI.DrawTexture(); it does not animate:
should
var CompanyLogo: Texture;
function Start() {
GUI.DrawTexture(Rect(0,0,800,600), CompanyLogo);
}
be enough to make such a function possible or is it impossible to use the movie texture in context with gui?