I’m doing some modification on some old code using Away3D 3.6
I’m trying to instantiate a MovieClip on a surface of a Plane, but I’m noticing that when applying it to the back, it doesn’t show up:
sheet = new Plane({width:512, height:256, segmentsW:15, segmentsH:20, material:frontMaterial, back:backMaterial, bothsides:true});
Curiously, if I apply the same surface to the front, it works:
sheet = new Plane({width:512, height:256, segmentsW:15, segmentsH:20, material:backMovie, back:frontMaterial, bothsides:true});
What I’m doing wrong? I’ve been browsing quite a lot and I cannot see any problem in my code…Any hint?