Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by nasoukikos · Jan 23, 2014 at 08:00 PM · animationmousenavmeshpathfinding

How to save a destination on a variable from NavMesh clicking

I have this modified script from the NavMesh tutorial on the stealth project, i was trying to access the animator throu the script so when the player clicks it would also play the animation, i made that changing the Speed float of the animator but i need to find a way to tell the script that the player has reached the destination so it would change again to zero. any ideas? i'm pretty new to scripting.

heres the script

using UnityEngine; using System.Collections;

public class NavCharScript : MonoBehaviour { public float turnSmoothing = 15f; // A smoothing value for turning the player. public float speedDampTime = 0.0f;

 NavMeshAgent agent;
 private Animator anim;
 private DoneHashIDs hash;
 private Vector3 destination;

 void Awake ()
 {
     // Setting up the references.
     anim = GetComponent<Animator> ();
     hash = GameObject.FindGameObjectWithTag (DoneTags.gameController).GetComponent<DoneHashIDs> ();
     // Use this for initialization
 }
 void Start () 
 {
      agent = GetComponent<NavMeshAgent> ();

 }
 
 // Update is called once per frame
 void Update () 
 {
 
     if (Input.GetMouseButtonDown (0)) {
     
         Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
         RaycastHit hit;

         if(Physics.Raycast(ray, out hit, 100))
         {
             agent.SetDestination(hit.point);
             anim.SetFloat(hash.speedFloat, 1.0f, speedDampTime, Time.deltaTime);            }
     }
             

 }

 void Rotating (float horizontal, float vertical)
 {
     // Create a new vector of the horizontal and vertical inputs.
     Vector3 targetDirection = new Vector3(horizontal, 0f, vertical);
     
     // Create a rotation based on this new vector assuming that up is the global y axis.
     Quaternion targetRotation = Quaternion.LookRotation(targetDirection, Vector3.up);
     
     // Create a rotation that is an increment closer to the target rotation from the player's rotation.
     Quaternion newRotation = Quaternion.Lerp(rigidbody.rotation, targetRotation, turnSmoothing * Time.deltaTime);
     
     // Change the players rotation to this new rotation.
     rigidbody.MoveRotation(newRotation);
 }



}

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by Narv · Jan 23, 2014 at 08:11 PM

You could check the remaining distance to the path end using:

http://docs.unity3d.com/Documentation/ScriptReference/NavMeshAgent-remainingDistance.html

and then if it is within a certain threshold from the end you can start scaling the speed down or whatever you want with it.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

19 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Controlling animation with mouse 0 Answers

best pathfinding system? 1 Answer

How to find where a navagent will be? 1 Answer

Increase size of obstacle - navmesh 1 Answer

How to make AICharacterController able to walk on walls and ceilings? 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges