Back to Home

ESO Lua File v101041

app/loadingscreen/console/zo_voicechathudloadingscreen_console.lua

[◄ back to folders ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--------------------------------------------------------------------------------
-- VoiceChat HUD Loading Screen Console
-- App version of the Voice Chat HUD for display on the loading screen.
--------------------------------------------------------------------------------
--XML Calls
    zo_mixin(control, ZO_VoiceChatHUD)
    local function OnLogoutSuccessful()
        control.speakerData = {}
        control.delayedClears = {}
        control:Update()
    end
    control:RegisterForEvent(EVENT_LOGOUT_SUCCESSFUL, OnLogoutSuccessful)
end
    control:Update()
end