Is it possible to get a video to play as texture on a polygon plane?
If not what’s the best way to play a single video?
Here’s the code which works on a polygon cube (.egg);
b = loader.loadModel('plane.egg')
b.reparentTo(render)
s = 128
b.setScale(s, s, s)
video = MovieTexture('mt.avi')
video.read('mt.avi')
b.setTexture(video,1)