Beispiel #1
0
 /***** TODO: create a custom collection to manage move points *****/
 /// <summary>
 /// Adds a point to the move path.
 /// </summary>
 public bool AddPoint(Vector3 point)
 {
     AssertNotDisposed();
     return(Internal.AddPointToPath(Id, point.X, point.Y, point.Z));
 }