View Single Post
08/17/17, 04:42 PM   #8
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,971
Use the post from Ayantir above to build a keybind for the function
"DontRotateGameCamera".

Attention:
The function is locally defined in the addon. You need to remove the local in fron of it so the keybindings is able to use it!

Code:
local function DontRotateGameCamera()
Change to:
Code:
function DontRotateGameCamera()
  Reply With Quote