public CC3CameraPerspectiveActionRunner(CC3CameraPerspectiveAction perspectiveCameraAction, 
                                         CC3CameraPerspective targetPerspectiveCamera,
                                         float actionDuration)
     : base(actionDuration)
 {
     _perspectiveCameraAction = perspectiveCameraAction;
     _targetPerspectiveCamera = targetPerspectiveCamera;
 }
 public void AddActionWithTarget(CC3CameraPerspectiveAction action, CC3CameraPerspective target, float actionDuration)
 {
     CC3CameraPerspectiveActionRunner actionRunner = new CC3CameraPerspectiveActionRunner(action, target, actionDuration);
     this.AddActionRunner(actionRunner);
 }