You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
14 lines
391 B
using UnityEngine;
|
|
using System.Collections;
|
|
using Kinect = Windows.Kinect;
|
|
using System.Collections.Generic;
|
|
|
|
public class SkeletonData {
|
|
public class JointData
|
|
{
|
|
public Vector3 position;
|
|
public Quaternion rotation;
|
|
}
|
|
public Dictionary<Kinect.JointType, JointData> joints = new Dictionary<Kinect.JointType, JointData>();
|
|
public bool isDead = false;
|
|
}
|
|
|