I’m looking for anything that would let me:
- Reset my pitch to 0 (horizontal) on command
- Set my pitch to a predetermined angle
- Change my pitch by a set value (or at least half of a regular aim increment)
All of this while dragon riding. I’m basically trying to optimize my flights. Is any of that possible?
Not possible as of 7.x but there are Dragon Riding WAs that will show speed and the necessary threshold to gain Vigor.
eg
https://wago.io/nFopWlIoQ
Are you talking about the camera angle?
Pitch is the vertical angle. The horizontal angle is referred to as yaw.
You may want to check these camera functions which you can run via the console or macros when you precede them with /run.
https://wowpedia.fandom.com/wiki/World_of_Warcraft_API#Camera
For example /run CenterCamera()
brings your camera to the center (i.e. reset yaw and pitch to 0).
Setting yaw to a specific angle can be achieved like this:
/run local sec=0.5 local deg=10 MoveViewRightStart(deg/(GetCVar("cameraYawMoveSpeed")*sec)) C_Timer.After(sec, function() MoveViewRightStop() end)
This rotates the camera right by 10 degres within 0.5 seconds. Change sec
and deg
to your liking and use MoveViewLeftStart()
and MoveViewLeftStop()
to rotate left.
To change the vertical pitch, do the same but use the MoveViewUp...
and MoveViewDown...
functions.