Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Advertisement
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Starts rotating the camera to the right.

MoveViewRightStart(speed)

Arguments

speed
number - Speed at which to begin rotating.

Returns

Nothing

Example

MoveViewRightStart(90/tonumber(GetCVar("cameraYawMoveSpeed"))) -- rotate camera to the right at 90 degrees/second

Details

  • Speed is a multiplier on the CVar 'cameraYawMoveSpeed', which is in degrees/second.
  • If speed is omitted, it is assumed to be 1.0.
  • Negative numbers go the opposite way, a speed of 0.0 will stop it.
  • This is not canceled by moving your character or interacting with the camera.
  • Applying a negative speed is not the same as using the other function to go the opposite way, both vectors are applied simultaneously. If you rotate both ways equally, it will appear to stop, but the rotations are still being applied, though canceling each other.
Advertisement