13 lines
215 B
C#
13 lines
215 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace VRSDK
|
||
|
|
{
|
||
|
|
[System.Serializable]
|
||
|
|
public class VR_HandAnimationSettings
|
||
|
|
{
|
||
|
|
public AnimationClip animation = null;
|
||
|
|
public bool hideHandOnGrab = false;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|