Hi, I'm trying to get both sides of a collada model to show up.
I can get both sides of a plane to show up by adding bothsides:true,
like this:
var plane:Object3D = new Plane({material:"yellow#", name:"plane",
y:-100, width:1000, height:1000, pushback:true, bothsides:true});
But this doesn't seem to work the same for a dae file.
var Door1DAE:Object3DLoader = Collada.load("models/Door.dae",
{material:TEXTURE_Door1, bothsides:true, scaling:1.0, y:0, x:-80,
z:-100, loadersize:300});
This gives the error:
WARNING: Unused arguments: {bothsides:true}
Any help much appreciated.
Ian