コード例 #1
0
 public virtual void OnGazeOff(GazeEventArgsPlaymaker e)
 {
     if (GazeOff != null)
     {
         GazeOff(this, e);
     }
 }
コード例 #2
0
ファイル: GetGaze.cs プロジェクト: ttcurry/YellowBowl
 public virtual void OnGazeOn(GazeEventArgsPlaymaker e)
 {
     if (GazeOn != null)
         GazeOn(this, e);
 }