Exemple #1
0
 public Event(TrackingManager.EventTag tag, float time, Vector3 loc)
 {
     this._tag             = tag;
     this._time            = time;
     this._currentLocation = loc;
 }
Exemple #2
0
    public Vector3 _currentLocation;      //the player location at the time

    //default event constructors
    public Event()
    {
        this._tag             = TrackingManager.EventTag.None;
        this._time            = 0;
        this._currentLocation = new Vector3(0, 0, 0);
    }