Compare commits
2 Commits
1b2aaaeeda
...
e779473cf5
| Author | SHA1 | Date |
|---|---|---|
|
|
e779473cf5 | |
|
|
22cbd6c791 |
|
|
@ -19,7 +19,20 @@ namespace VELConnect
|
|||
public class VELConnectManager : MonoBehaviour
|
||||
{
|
||||
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;
|
||||
|
||||
public class State
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "edu.uga.engr.vel.vel-connect",
|
||||
"displayName": "VEL-Connect",
|
||||
"version": "5.0.0",
|
||||
"version": "5.0.2",
|
||||
"unity": "2019.1",
|
||||
"description": "Web-based configuration for VR applications",
|
||||
"keywords": [],
|
||||
|
|
|
|||
Loading…
Reference in New Issue