コード例 #1
0
ファイル: OscSender.cs プロジェクト: pil4283/PirSensor
 public void Connect()
 {
     client = new OscClient(ipAddress, port);
 }
コード例 #2
0
ファイル: OSCOutput.cs プロジェクト: brl513/first-game-scene
 void Start()
 {
     client = new OscClient(IPAddress, oscPortOut);
 }
コード例 #3
0
 public void SendButtonMsg()
 {
     client = new OscClient(IPAddress, oscPortOut);
     string buttonAddress = "/button";
     //client.Send(buttonAddress, buttonmsg);
 }
コード例 #4
0
 public void SendData()
 {
     client = new OscClient(IPAddress, oscPortOut);
     client.Send(oscAddress, sliderIndex, sliderValue);
     Debug.Log(oscAddress + ":" + ":" + sliderIndex + ":" + sliderValue);
 }
コード例 #5
0
ファイル: ClientTest.cs プロジェクト: aaronvark/OscJack
 void OnDestroy()
 {
     _client?.Dispose();
     _client = null;
 }