CameraPitch method

void CameraPitch(
  1. CameraD camera,
  2. num angle,
  3. bool lockView,
  4. bool rotateAroundTarget,
  5. bool rotateUp,
)

Implementation

void CameraPitch(
  CameraD camera,
  num angle,
  bool lockView,
  bool rotateAroundTarget,
  bool rotateUp,
) => run(
  () => 'CameraPitch($camera, $angle, $lockView, $rotateAroundTarget, $rotateUp)',
  () => _refUpdateCamera3D(camera,
    (pc) => rl.Cam.CameraPitch(
      pc,
      angle.toDouble(),
      lockView,
      rotateAroundTarget,
      rotateUp,
    ),
  ),
);