public virtual void OnInteractHapticsNearTouched(InteractHapticsEventArgs e)
 {
     if (InteractHapticsNearTouched != null)
     {
         InteractHapticsNearTouched(this, e);
     }
 }
Exemplo n.º 2
0
 public virtual void OnInteractHapticsGrabbed(InteractHapticsEventArgs e)
 {
     if (InteractHapticsGrabbed != null)
     {
         InteractHapticsGrabbed(this, e);
     }
 }
Exemplo n.º 3
0
 // Token: 0x060015BE RID: 5566 RVA: 0x000772EF File Offset: 0x000754EF
 public virtual void OnInteractHapticsUsed(InteractHapticsEventArgs e)
 {
     if (this.InteractHapticsUsed != null)
     {
         this.InteractHapticsUsed(this, e);
     }
 }