com.hecomi.uosc
Advanced tools
Comparing version 2.0.3 to 2.1.0
{ | ||
"name": "com.hecomi.uosc", | ||
"version": "2.0.3", | ||
"version": "2.1.0", | ||
"displayName": "uOSC", | ||
@@ -5,0 +5,0 @@ "description": "A simple implementation of the OSC protocol", |
@@ -51,2 +51,3 @@ uOSC | ||
else if (value is string) msg += (string)value; | ||
else if (value is bool) msg += (bool)value; | ||
else if (value is byte[]) msg += "byte[" + ((byte[])value).Length + "]"; | ||
@@ -67,3 +68,3 @@ } | ||
1. Add `uOscClient` component to GameObject. | ||
2. Send data (`int`, `float`, `string`, and `byte[]`, are supported now). | ||
2. Send data (`int`, `float`, `string`, `bool`, and `byte[]`, are supported now). | ||
@@ -70,0 +71,0 @@ ```cs |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
128513
264