Ejemplo n.º 1
0
 /// <summary>
 /// Player entered the place id
 /// </summary>
 /// <param name="id">Reachable identifier.</param>
 /// <param name="type">Reachable type.</param>
 /// <param name="latLon">Actor latitude and longitude.</param>
 /// <param name="orientation">Actor orientation.</param>
 public TrackerEvent Entered(string id, Type type, Vector2d latLon, Vector3d orientation)
 {
     tracker.setPosition(latLon.x, latLon.y);
     tracker.setOrientation(orientation.x, orientation.y, orientation.z);
     return(Entered(id, type));
 }
 /// <summary>
 /// Player entered the place id
 /// </summary>
 /// <param name="id">Reachable identifier.</param>
 /// <param name="type">Reachable type.</param>
 /// <param name="latLon">Actor latitude and longitude.</param>
 /// <param name="orientation">Actor orientation.</param>
 public void Entered(string id, Type type, Vector2d latLon, Vector3d orientation)
 {
     tracker.setPosition(latLon.x, latLon.y);
     tracker.setOrientation(orientation.x, orientation.y, orientation.z);
     Entered(id, type);
 }