Exemple #1
0
 public void Connect()
 {
     client = new OscClient(ipAddress, port);
 }
Exemple #2
0
 void Start()
 {
     client = new OscClient(IPAddress, oscPortOut);
 }
 public void SendButtonMsg()
 {
     client = new OscClient(IPAddress, oscPortOut);
     string buttonAddress = "/button";
     //client.Send(buttonAddress, buttonmsg);
 }
 public void SendData()
 {
     client = new OscClient(IPAddress, oscPortOut);
     client.Send(oscAddress, sliderIndex, sliderValue);
     Debug.Log(oscAddress + ":" + ":" + sliderIndex + ":" + sliderValue);
 }
Exemple #5
0
 void OnDestroy()
 {
     _client?.Dispose();
     _client = null;
 }