프로젝트

일반

사용자정보

통계
| 개정판:

t1 / TFDContents / Assets / Standard Assets / Windows / Kinect / Activity.cs @ 9

이력 | 보기 | 이력해설 | 다운로드 (526 Bytes)

1 3 KTH
#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.Activity
9
    //
10
    public enum Activity : int
11
    {
12
        EyeLeftClosed                            =0,
13
        EyeRightClosed                           =1,
14
        MouthOpen                                =2,
15
        MouthMoved                               =3,
16
        LookingAway                              =4,
17
    }
18
19
}
20
#endif