Is there a way to get Diablo style point and click controls? I'd like something that works like 'Straight to Cursor' but on mouse up it would continue to walk to the spot(where you last mouse up'd.)
This is very useful when you have a follow camera and your character needs to walk long distances.
Comments
AC.KickStarter.stateHandler.gameState == AC.GameState.Normal
Then point and click to the mouse's location:
Vector3[] pointArray = AC.KickStarter.navigationManager.navigationEngine.GetPointsArray (KickStarter.player.transform.position, pointToMoveTo, AC.KickStarter.player);
AC.KickStarter.player.MoveAlongPoints (pointArray, false);
(Where "pointToMoveTo" is the position to move to in world space.)