ESO Function Data v100011
RegisterForUpdate()
Function Aliases
- No known aliases for this function.
Global Function Definitions
- No known global definitions for this function.
Local Function Definitions
- No known local definitions for this function.
Function Calls
- ingame/contextual/contextual.lua:60 -- EVENT_MANAGER:RegisterForUpdate("ZO_Contextual", FADE_OUT_DELAY, SetShouldntShowAnimated)
- ingame/death/death.lua:653 -- EVENT_MANAGER:RegisterForUpdate("WaitToShowDeath", DEATH_PROMPT_DELAY_MS, function()
self.waitingToShowPrompt = false
EVENT_MANAGER:UnregisterForUpdate("WaitToShowDeath")
self:UpdateDisplay()
end)
- ingame/death/raidlifedisplay.lua:192 -- EVENT_MANAGER:RegisterForUpdate(self.updateRegistrationName, RECENT_CHANGE_DURATION, self.updateCallback)
- ingame/deathrecap/deathrecap.lua:374 -- EVENT_MANAGER:RegisterForUpdate("DeathRecapUpdate", DEATH_RECAP_DELAY, function()
self.waitingToShowPrompt = false
EVENT_MANAGER:UnregisterForUpdate("DeathRecapUpdate")
self.animateOnShow = true
self:SetupDeathRecap()
end)
- ingame/durability/durabilitywarner.lua:68 -- EVENT_MANAGER:RegisterForUpdate("DurabilityWarner", 5000, OnUpdate)
- ingame/feedback/feedback.lua:43 -- EVENT_MANAGER:RegisterForUpdate("ZO_Feedback", 0, function() self:OnUpdate() end)
- ingame/map/cmaphandlers.lua:62 -- EVENT_MANAGER:RegisterForUpdate("CMapHandler", 100, function()
self.refresh:UpdateRefreshGroups()
end)
- ingame/performance/performancemeter.lua:61 -- EVENT_MANAGER:RegisterForUpdate("ZO_PerformanceMeters", 1000, function() self:OnUpdate() end)
- ingame/playerattributebars/playerattributebars.lua:36 -- EVENT_MANAGER:RegisterForUpdate(control:GetName() .. "FadeUpdate", DELAY_BEFORE_FADING, function() bar:UpdateContextualFading() end)
- ingame/playertoplayer/playertoplayer.lua:54 -- EVENT_MANAGER:RegisterForUpdate(control:GetName() .. "OnUpdate", 0, function() self:OnUpdate() end)
- ingame/stable/stablemanager.lua:70 -- EVENT_MANAGER:RegisterForUpdate("ZO_Stable_Manager", 100, function(...) self:OnUpdate(...) end)
- ingame/tutorial/briefhudtutorial.lua:32 -- EVENT_MANAGER:RegisterForUpdate(self.tutorial:GetName() .. "OnUpdate", 0, function() self:OnUpdate() end)
- ingame/tutorial/hudinfotutorial.lua:17 -- EVENT_MANAGER:RegisterForUpdate(self.tutorial:GetName() .. "OnUpdate", 0, function() self:OnUpdate() end)
- ingame/unitattributevisualizer/modules/arrowregeneration.lua:57 -- EVENT_MANAGER:RegisterForUpdate("ZO_UnitVisualizer_ArrowRegenerationModule" .. self:GetModuleId(), 85, function() self:Pulse() end)
- ingame/unitattributevisualizer/modules/powershield.lua:57 -- EVENT_MANAGER:RegisterForUpdate("ZO_UnitVisualizer_PowerShieldModule" .. self:GetModuleId(), 0, function() self:OnUpdate() end)
- libraries/globals/globalapi.lua:179 -- EVENT_MANAGER:RegisterForUpdate(name, ms,
function()
func(id)
EVENT_MANAGER:UnregisterForUpdate(name)
end)
- libraries/utility/zo_queuedsoundplayer.lua:41 -- EVENT_MANAGER:RegisterForUpdate(self.id, self.currentPlayingSoundLength, self.OnUpdateFunction)
- libraries/zo_crossfadebg/zo_crossfadebg.lua:69 -- EVENT_MANAGER:RegisterForUpdate(self.m_slideShowEventName, delay, SlideShowCallback)
- libraries/zo_directionalinput/zo_directionalinput.lua:57 -- EVENT_MANAGER:RegisterForUpdate("DirectionalInput", 0, function() self:OnUpdate() end)
- libraries/zo_keybindbutton/zo_keybindbutton.lua:167 -- EVENT_MANAGER:RegisterForUpdate("KeybindButtonUpdate", 0, OnUpdate)
- libraries/zo_templates/statusbartemplates.lua:74 -- EVENT_MANAGER:RegisterForUpdate("ZO_StatusBar_SmoothTransition", 0, OnSmoothTransitionsUpdate)
- libraries/zo_templates/tooltip.lua:134 -- EVENT_MANAGER:RegisterForUpdate("UpdateComparisonDynamicAnchors", 0, UpdateComparisonDynamicAnchors)
- libraries/zo_templates/windowtemplates.lua:560 -- EVENT_MANAGER:RegisterForUpdate(self:GetName(), 20, function(timeMS)
local timeS = timeMS / 1000
if(timeS < self.endTimeS and timeS >= self.endTimeS - self.numWarningSounds) then
local lastUpdateSecPart = zo_floor(self.lastUpdateS)
local nowSecPart = zo_floor(timeS)
if(lastUpdateSecPart ~= nowSecPart) then
PlaySound(SOUNDS.COUNTDOWN_WARNING)
if(not self.pulseTimeline) then
self.pulseTimeline = ANIMATION_MANAGER:CreateTimelineFromVirtual("ZO_RadialCountdownTimerPulse", self)
end
self.pulseTimeline:PlayFromStart()
end
end
self.lastUpdateS = timeS
end)
- libraries/zo_templates/windowtemplates.lua:611 -- EVENT_MANAGER:RegisterForUpdate(tostring(self), 0, function() self:OnUpdate() end)