I have a basic question about camera in away3D 3.6 I want a player model to always lookat where the camera is pointing .
problem is when i rotate the camera the player wont move with the
rotation.
if the camera moves forward the player moves forward the same amount.
setting the player to camera x,y,z wont work when I rotate camera
this doesnt work
private function setPlayerPos():void {
var target:Vector3D = camera.lookingAtTarget;
player.x=target.x;
player.y=target.y;
player.z=target.z;
}
