diff --git a/LibreMetaverse/AgentManagerMovement.cs b/LibreMetaverse/AgentManagerMovement.cs index fed22d44..dd433218 100644 --- a/LibreMetaverse/AgentManagerMovement.cs +++ b/LibreMetaverse/AgentManagerMovement.cs @@ -501,16 +501,6 @@ namespace OpenMetaverse SendUpdate(reliable); } - /// - /// Rotates the avatar body and camera toward a target position. - /// This will also anchor the camera position on the avatar - /// - /// Region coordinates to turn toward - public bool TurnToward(Vector3 target) - { - return TurnToward(target, true); - } - /// /// Rotates the avatar body and camera toward a target position. /// This will also anchor the camera position on the avatar @@ -518,7 +508,7 @@ namespace OpenMetaverse /// Region coordinates to turn toward /// whether to send update or not /// Returns if TurnToward operation was successful - public bool TurnToward(Vector3 target, bool sendUpdate) + public bool TurnToward(Vector3 target, bool sendUpdate = true) { if (!Client.Settings.SEND_AGENT_UPDATES) {