Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.13 KB | None | 0 0
  1.         //
  2.         // Summary:
  3.         //     Creates a behavior to move the current character to the specified location,
  4.         //     and stop when within the specified range.
  5.         //
  6.         // Parameters:
  7.         //   location:
  8.         //     The location.
  9.         //
  10.         //   range:
  11.         //     The range.
  12.         //
  13.         //   stopInRange:
  14.         //     Whether to stop when within the specified range.
  15.         //
  16.         //   destinationName:
  17.         //
  18.         //   stopStatus:
  19.         //     If you are using this within a Sequence, you may want to change this to Success.
  20.         //
  21.         // Returns:
  22.         //     .
  23.         //
  24.         // Remarks:
  25.         //     Created 3/11/2012.
  26.         public static Composite MoveAndStop(ValueRetriever<Clio.Utilities.Vector3> location, float range, bool stopInRange = false, string destinationName = null, RunStatus stopStatus = RunStatus.Failure);
  27.         public static Composite MoveAndStop(ValueRetriever<Clio.Utilities.Vector3> location, ValueRetriever<float> range, bool stopInRange = false, string destinationName = null, RunStatus stopStatus = RunStatus.Failure);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement