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 dre38w · Feb 03, 2012 at 06:10 PM · rotationraycastaislerpjitter

Jitter on Slerp - Raycast

Hello, I have an AI that is checking for walls in front of it using a CapsuleCast and then inside the CapsuleCast check, it's checking for walls on either side of it using a set distance of a Raycast so to determine the best way to rotate and lastly, rotate a set way if no side walls to detect. Now this works, more or less, still have some bugs to fix and changes to make so that it'll rotate in different environments, but for the life of me the rotation with Slerp/RotateTowards is jittery when it reaches the peak of the rotation until the rotation has ended. I've went through a lot of other posts but all of the suggestions work the same and have the same issue. I've spent days on and off this part of the AI but I don't understand why it would jitter. Any thoughts? Thanks.

Here's the code that's doing the checking and rotating.

  //check for anything in front
         if (Physics.CapsuleCast(point1, point2, controller.radius, transform.forward, out hitInfo, capsuleWallDetectDistance, ignoreEnemy))
         {
             //check for walls on the right then turn to the left
             if (Physics.Raycast(transform.position, transform.right, detectWallDistance, ignoreEnemy))
             {
                 direction = -transform.right;
             }
             //check for walls on the left then turn to the right
             else if (Physics.Raycast(transform.position, -transform.right, detectWallDistance, ignoreEnemy))
             {
                 direction = transform.right;
             }
             //otherwise if no walls are on either side just turn to the right.
             else
             {
                 direction = transform.right;
             }
     transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.LookRotation(direction), 2 * Time.deltaTime);
     }
Comment
Add comment · Show 1
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 dre38w · Feb 03, 2012 at 06:44 PM 1
Share

Oooooh!! I know why it's doing it now. It's because when it detects the front it rotates BUT it rotates to a certain angle then stops rotating because it's not detecting anymore. Then while it continues to move it detects the wall again and again and again thus creating the jitteriness. Okay that means I'll need to go about this a different way.

0 Replies

· Add your reply
  • Sort: 

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Can't figure out how to make my raycast obstacle avoidance less jittery 3 Answers

Find a new target when raycast triggers 0 Answers

Basic AI Locked Axis 1 Answer

Follow and Rotate an object 1 Answer

Raycasting and changing player rotation accoording to what is underneath. 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