Compare commits
2 Commits
1b2aaaeeda
...
e779473cf5
| Author | SHA1 | Date |
|---|---|---|
|
|
e779473cf5 | |
|
|
22cbd6c791 |
|
|
@ -19,7 +19,20 @@ namespace VELConnect
|
||||||
public class VELConnectManager : MonoBehaviour
|
public class VELConnectManager : MonoBehaviour
|
||||||
{
|
{
|
||||||
public string velConnectUrl = "http://localhost";
|
public string velConnectUrl = "http://localhost";
|
||||||
public static string VelConnectUrl => instance.velConnectUrl;
|
public static string VelConnectUrl
|
||||||
|
{
|
||||||
|
get => instance.velConnectUrl;
|
||||||
|
set {
|
||||||
|
instance.velConnectUrl = value;
|
||||||
|
SetDeviceField(new Dictionary<DeviceField, string>
|
||||||
|
{
|
||||||
|
{ DeviceField.os_info, SystemInfo.operatingSystem },
|
||||||
|
{ DeviceField.friendly_name, SystemInfo.deviceName },
|
||||||
|
{ DeviceField.current_app, Application.productName },
|
||||||
|
{ DeviceField.pairing_code, PairingCode },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
private static VELConnectManager instance;
|
private static VELConnectManager instance;
|
||||||
|
|
||||||
public class State
|
public class State
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "edu.uga.engr.vel.vel-connect",
|
"name": "edu.uga.engr.vel.vel-connect",
|
||||||
"displayName": "VEL-Connect",
|
"displayName": "VEL-Connect",
|
||||||
"version": "5.0.0",
|
"version": "5.0.2",
|
||||||
"unity": "2019.1",
|
"unity": "2019.1",
|
||||||
"description": "Web-based configuration for VR applications",
|
"description": "Web-based configuration for VR applications",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue