Beispiel #1
0
    public override string getDevicePropForUser(PicoVRConfigProfile.DeviceCommand deviceid)
    {
        string istrue = "0";

        CallStaticMethod <string>(ref istrue, javaVrActivityClass, "getDevicePropForUser", (int)deviceid);
        return(istrue);
    }
Beispiel #2
0
    public override bool setDevicePropForUser(PicoVRConfigProfile.DeviceCommand deviceid, string number)
    {
        bool istrue = false;

        CallStaticMethod <bool>(ref istrue, javaVrActivityClass, "setDevicePropForUser", (int)deviceid, number);
        return(istrue);
    }
 public virtual string getDevicePropForUser(PicoVRConfigProfile.DeviceCommand deviceid)
 {
     return(1 + "");
 }
 public virtual bool setDevicePropForUser(PicoVRConfigProfile.DeviceCommand deviceid, string number)
 {
     return(false);
 }
Beispiel #5
0
 /// <summary>
 /// 操作falcon系统接口
 /// </summary>
 public string getDevicePropForUser(PicoVRConfigProfile.DeviceCommand deviceid)
 {
     return(currentDevice.getDevicePropForUser(deviceid));
 }
Beispiel #6
0
 /// <summary>
 /// 操作falcon系统接口
 /// </summary>
 public bool setDevicePropForUser(PicoVRConfigProfile.DeviceCommand deviceid, string value)
 {
     return(currentDevice.setDevicePropForUser(deviceid, value));
 }