I saw these properties don't exist anymore in the recent build. What
am I supposed to use instead now to move around with a HoverCamera?

I've used an enterFrame loop like this before:

private function onEnterFrame(event:Event):void
{
        if (move)
        {
                camera.targetpanangle = 0.3 * (stage.mouseX - lastMouseX) +
lastPanAngle;
                camera.targettiltangle = 0.3 * (stage.mouseY - lastMouseY) +
lastTiltAngle;
        }

        camera.hover();
        view.render();
}

Reply via email to