Login Properties

WARNING: Vivox recommends not setting this value - Vivox Documentation

If you want to change default Login Properties (how many times Participant/User events fire per second) before a user has logged in, you can change the VivoxParticipantPropertyUpdateFrequency variable for EasySettings (scriptable object) in the Unity Editor.

Located at Assets/EasyCodeForVivox/Settings/EasySettings

If you want to change the Login Properties after a user has logged in, you can use the UpdateLoginProperties() method

ParticipantPropertyUpdateFrequency - Vivox Documentation

EasyManager

public void UpdateLoginProperties()
{
    UpdateLoginProperties("username", VivoxUnity.ParticipantPropertyUpdateFrequency.StateChange);
}

EasyLogin

public void UpdateLoginProperties()
{
    _login.UpdateLoginProperties("username", VivoxUnity.ParticipantPropertyUpdateFrequency.StateChange);
}

Last updated