Hi all,
Is there a way to change the camera moving speed for certain moves and then go back to the default speed?
I have tried something like:
var oldCamSteps:int = cameraController.steps;
cameraController.steps = 20;
cameraController.update();
cameraController.steps = oldCamSteps;
But it doesn’t work for me. Probably I have to wait for the camera to finish moving before change the steps value back. I wonder if there is a method already.