View Single Post
03-12-17, 11:49 AM   #18
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,877
In the section where you have the line:
Code:
MouseLookFrame:RegisterEvent("PLAYER_ENTERING_WORLD")
Add the line:
Code:
MouseLookFrame:RegisterEvent("CINEMATIC_START")
Next, before the line:
Code:
if event == "PLAYER_ENTERING_WORLD" then
Add:
Code:
if event == "CINEMATIC_START" then
	MouseLookOn = false
	MouselookStop()
end
This hasn't been tested.
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.
  Reply With Quote