Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
0
Question by DiscoHenke · Apr 15, 2016 at 04:40 AM · script.timekey pressed

Stop velocity on Keydown for certain time

Hey all,

How can I stop my rigidbody's velocity for 10 seconds after pressing down on E?

             if (Input.GetKeyDown(KeyCode.E)) 
             {
                     //LAST 10 SECONDS
                     rb.velocity = Vector2.zero;
             }
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
1

Answer by Ali-hatem · Apr 15, 2016 at 10:37 AM

  if (Input.GetKeyDown(KeyCode.E)) 
     {
        rb.velocity = Vector2.zero;
        StartCoroutine(Normal());
     }

 IEnumerator Normal(){
    yield return new WaitForSeconds(10f);
    rb.velocity = // normal velocity
 }
Comment
Add comment · Show 2 · 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
avatar image DiscoHenke · Apr 17, 2016 at 08:03 PM 0
Share

So I already have an IEnumerator called update path:

 IEnumerator UpdatePath()
 {   
     //start a new path to the target position (player) from transform position (current position), and return result to the OnPathComplete method;
     seeker.StartPath(transform.position, target.position, OnPathComplete);
 
     yield return new WaitForSeconds(1f / updateRate);
     StartCoroutine(UpdatePath());
 }

and where I am attempting to use keydown I am adding force to the velocity based on certain parameters:

     public Force$$anonymous$$ode2D f$$anonymous$$ode;
     Vector3 dir = (path.vectorPath[currentWaypoint] - transform.position).normalized;
     dir *= speed * Time.fixedDeltaTime;
 
     //$$anonymous$$ove AI in direction
     rb.AddForce(dir, f$$anonymous$$ode);
         if (Input.Get$$anonymous$$eyDown($$anonymous$$eyCode.E))
         {
             rb.velocity = Vector2.zero;
         }

         float dist = Vector3.Distance(transform.position, path.vectorPath[currentWaypoint]);
         //if close enough to next waypoint, follow waypoint
         if (dist < nextWaypointDistance) {
             currentWaypoint++;
             return;
         }
avatar image Ali-hatem DiscoHenke · Apr 17, 2016 at 09:02 PM 0
Share

you are using StartCoroutine(UpdatePath()); inside IEnumerator UpdatePath()you should use it in if (Input.Get$$anonymous$$eyDown($$anonymous$$eyCode.E)) :

 void Update(){
  if (Input.Get$$anonymous$$eyDown($$anonymous$$eyCode.E))
          {
              rb.velocity = Vector2.zero;
              StartCoroutine(UpdatePath());
          }
 }
  IEnumerator UpdatePath()
  {   
      yield return new WaitForSeconds(1f / updateRate);
      seeker.StartPath(transform.position, target.position, OnPathComplete);
      // move your object 
  }

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Make an Object Stop Moving Upon Collision 0 Answers

How would I create a script that spawns objects more frequently as time goes on, then stops after a certain point/amount of time? 1 Answer

system time image effects 0 Answers

How to make my powerup last for about five seconds then go back to normal? 3 Answers

how can i fix my java script errors? 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