コード例 #1
0
 public abstract void OnUnInteract(XRNode hand, GameObject handObject = null, AnimationController handAnimation = null, XRNodeHandController handController = null);
コード例 #2
0
 private void OnEnable()
 {
     controller                = (AnimationController)target;
     controller.animator       = controller.GetComponent <Animator>();
     EditorApplication.update += Update;
 }
コード例 #3
0
 protected virtual void Awake()
 {
     controller = GetComponentInChildren <AnimationController>();
 }
コード例 #4
0
 void Awake()
 {
     handState             = HandState.Free;
     currentHandAnimation  = this.GetComponent <AnimationController>();
     currentHandController = this.GetComponentInParent <XRNodeHandController>();
 }