Hi,
I try to use video texture on a imported plane.
Created Model in Blender, exported .obj -> 2 Meshes.
Import to Prefab -> export AS3 Class
Create Material
var vt:VideoTexture=new VideoTexture(“vid/MOV_0015.flv”,1024,512);
var tm:TextureMaterial=new TextureMaterial(vt);
Then
myImportedModelClass.meshes[0].submeshes[0]material = tm
Video is rendered but it seems to be way out of size…
If i create an new Plane and use the same method to apply the video texture the video is rendered perfectly…
Whats wrong?
Some help out there?