Tanoda
VivePointerTarget.cs
Go to the documentation of this file.
1using System.Collections;
2using System.Collections.Generic;
3using UnityEngine;
5
6public class VivePointerTarget : MonoBehaviour {
7
8 public UnityEvent onPointerClick;
9
10
11 public void OnPointerClick () {
12 onPointerClick.Invoke ();
13 }
14}
UnityEvent onPointerClick