Send Messages
Inherit from EasyManager.cs
using EasyCodeForVivox;
public class VivoxManager : EasyManager
{
}Inject EasyMessages
using EasyCodeForVivox;
using UnityEngine;
using Zenject;
public class VivoxMessages : MonoBehaviour
{
EasyMessages _messages;
[Inject]
private void Initialize(EasyMessages messages)
{
_messages = messages;
}
}Send Messages
Send Channel Message
I have chosen to use Web API lingo and will refer to them as stated below
I have 2 examples of how to send a channel message
EasyManager
EasyMessages
Send Direct Message
I have chosen to use Web API lingo and will refer to them as stated below
I have 2 examples of how to send a direct message
EasyManager
EasyMessages
Send Event Message
Last updated