I want to use the shadow, but not the floor. I set the floor.alpha=0 but the shadow is also gone. How do I see just the shadow?
Cast shadow on transparent plane?Software: Away3D 4.x |
||
|
||
movieclip, Newbie
Posted: 30 June 2015 07:20 AM Total Posts: 10 [ # 1 ] Set multiply blendMode for the transparent floor var material:ColorMaterial = new ColorMaterial(0xffffff, 0); material.blendMode = BlendMode.MULTIPLY; material.shadowMethod.alpha = 0.95; //alpha for shadows |