NRHandMeshJointConfig.cs 270 B

123456789101112
  1. namespace NRKernal
  2. {
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. public class NRHandMeshJointConfig : MonoBehaviour
  6. {
  7. public Vector3 RotationOffset;
  8. public HandEnum HandEnum;
  9. public List<Transform> HandJoint;
  10. }
  11. }