-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathSensorBehaviour.cs
40 lines (36 loc) · 931 Bytes
/
SensorBehaviour.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using UnityEngine;
using System.Collections;
using System;
using System.Collections.Generic;
public class SensorBehaviour : MonoBehaviour
{
private AndroidJavaObject plugin;
void Start ()
{
#if UNITY_ANDROID
plugin = new AndroidJavaClass("jp.kshoji.unity.sensor.UnitySensorPlugin").CallStatic<AndroidJavaObject>("getInstance");
plugin.Call("setSamplingPeriod", 100 * 1000); // refresh sensor 100 mSec each
plugin.Call("startSensorListening", "accelerometer");
#endif
}
void OnApplicationQuit ()
{
#if UNITY_ANDROID
if (plugin != null) {
plugin.Call("terminate");
plugin = null;
}
#endif
}
void Update ()
{
#if UNITY_ANDROID
if (plugin != null) {
float[] sensorValue = plugin.Call<float[]>("getSensorValues", "accelerometer");
if (sensorValue != null) {
Debug.Log("sensorValue:" + string.Join(",", new List<float>(sensorValue).ConvertAll(i => i.ToString()).ToArray()));
}
}
#endif
}
}