Automated updating of API pages at this location, to reflect patch changes, has ceased from 10.1.7 onwards. |
Returns true during simple in-game cinematics where only the camera moves, like the race intro cinematics.
inCinematic = InCinematic()
Returns[]
- inCinematic
- boolean
Example[]
Prints what type of cinematic is playing on CINEMATIC_START.
local function OnEvent(self, event, ...)
if InCinematic() then
print("simple cinematic")
elseif IsInCinematicScene() then
print("fancy in-game cutscene")
end
end
local f = CreateFrame("Frame")
f:RegisterEvent("CINEMATIC_START")
f:SetScript("OnEvent", OnEvent)