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 |
end
else
end
end
end
end
--[[
Supportes either a TUTORIAL_TRIGGER enum or a table. Table format should include these fields:
trigger - (required) the TUTORIAL_TRIGGER enum value
param - (optional) the param to use with TriggerTutorialWithParam
anchorPosition, screenX, screenY - (optional) the arguments to use with TriggerTutorialWithPosition
--]]
if tutorialTrigger . param then
elseif tutorialTrigger . anchorPosition then
return self : ShowTutorialWithPosition ( tutorialTrigger , tutorialTrigger . anchorPosition , tutorialTrigger . screenX , tutorialTrigger . screenY )
end
end
end
return false
end
end
return false
end
function Tutorial_Manager : ShowTutorialWithPosition ( tutorialTrigger , anchorPosition , screenX , screenY )
end
return false
end
|