1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
-- Tutorial types that should neither fire TriggeredTutorialChanged callbacks nor affect TUTORIAL_MANAGER:IsTutorialTriggered()
-- For now this works with no additional logic required for tutorial as they are hidden because Pointer Box tutorials do not fire the hidden event.
local UNTRACKED_TUTORIAL_TYPES = ZO_CreateSetFromArguments ( TUTORIAL_TYPE_POINTER_BOX , TUTORIAL_TYPE_HUD_BRIEF , TUTORIAL_TYPE_HUD_INFO_BOX )
end
end
end
end
end
end
return
end
if not UNTRACKED_TUTORIAL_TYPES [ tutorialType ] then
end
end
return
end
if not UNTRACKED_TUTORIAL_TYPES [ tutorialType ] then
end
end
end
end
function Tutorial_Manager : ShowTutorialWithPosition ( tutorialTrigger , anchorPosition , screenX , screenY )
if self : CanTutorialTriggerFire ( tutorialTrigger ) and TriggerTutorialWithPosition ( tutorialTrigger , anchorPosition , screenX , screenY ) then
end
end
|