- Home /
BCE0018: 'MovieTexture' does not denote a valid type ('not found').
I am making a game for android and have only just thought of adding a menu to it now. In the menu I have a movie playing on a plane, then I have guitextures acting as buttons. When I try and compile the game into an apk file it says "BCE0018: 'MovieTexture' does not denote a valid type ('not found')." in the console. Here is the script that the error is coming from:
#pragma strict
var movTexture : MovieTexture;
function Start () {
GetComponent.<Renderer>().material.mainTexture = movTexture;
movTexture.Play();
}
function Update () {
}
Answer by fafase · Mar 29, 2015 at 09:01 AM
MovieTexture does not work on mobile (4.x dunno if they added it to 5). You need to use plugins.
Hello fafase, i've got same problem like Jacob.. I want to use SPlugins $$anonymous$$ovieTexture , but i dont know how to do it.. can you explain?
Your answer
Follow this Question
Related Questions
how do I fix following errors? help please 1 Answer
disabling a script when collide with a cube 3 Answers
Android Building 1 Answer
how do i use touch.Position 1 Answer