t1 / TFDContents / Assets / Standard Assets / Windows / Kinect / HandState.cs @ 11
이력 | 보기 | 이력해설 | 다운로드 (528 Bytes)
| 1 |
#if !(UNITY_WSA_10_0 && NETFX_CORE) |
|---|---|
| 2 |
using RootSystem = System; |
| 3 |
using System.Linq; |
| 4 |
using System.Collections.Generic; |
| 5 |
namespace Windows.Kinect |
| 6 |
{
|
| 7 |
// |
| 8 |
// Windows.Kinect.HandState |
| 9 |
// |
| 10 |
public enum HandState : int |
| 11 |
{
|
| 12 |
Unknown =0, |
| 13 |
NotTracked =1, |
| 14 |
Open =2, |
| 15 |
Closed =3, |
| 16 |
Lasso =4, |
| 17 |
} |
| 18 |
|
| 19 |
} |
| 20 |
#endif |