Wowpedia

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

READ MORE

Wowpedia
Register
Advertisement

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)
Advertisement