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 sandboks · May 26, 2017 at 03:39 PM · physicscollision detectionplayer movement

Physics ignored when using NavMeshAgent enabled

I have a platform bug and workaround using NavMeshAgent.

  • The player walks onto an invisible platform. the platform is a basic 3D cylinder.

  • the platform collision triggers the platform to be visible

  • The next Update starts the platform animation to lift the player.

The issue is that the platform ignores the player pill and children. Players Components used are :

CapsuleCollider, isTrigger false (the Lift game object has the collision trigger)

RigidBody, UseGravity true

NavMeshAgent

I spent the better part of a day moving these components order around, adding/removing, rebuilding NavMesh. Every time, the platform goes up it ignores the Player - until I removed the NavMeshAgent and started the player on the platform. Now I consistently have it working because I disable NavMeshAgent when the collision starts (see function below).
That workaround right there is messed up, but it allowed me to continue past the basic setup of ,"lift player pill on platform".
Anyone have any pro tips on setting up my scene better so this conflict doesn't happen?


public class DetectLift : MonoBehaviour {

 public GameObject PlayerObject;
 private Component[] LiftEffect;
 public Animator LiftUp;
 private bool PlayerReady;
 // Use this for initialization
 void Start () {
     PlayerReady = false;
 }

 //Player must find the hidden platform
 //when they find the platform hide the hints and enable the visuals to reveal the lift
 void OnTriggerEnter (Collider other)
 {
     LiftEffect = GetComponentsInChildren(typeof (MeshRenderer));
     if (LiftEffect != null)
     {
         foreach (MeshRenderer Toggle in LiftEffect)
             Toggle.enabled = !Toggle.enabled;

     }

     //parent the Player to the platform to make the animation smoother
     PlayerObject.transform.parent = this.gameObject.transform;
     PlayerReady = true; //checked on Update to end the level

     //WORKAROUND: there is an issue with the platform not picking up the player unless the NavMeshAgent on the player is disabled
     //since the player is now a child we can rehash the previous component check to disable it
     LiftEffect = GetComponentsInChildren(typeof (NavMeshAgent));

     if (LiftEffect != null)
     {
         foreach (NavMeshAgent Toggle in LiftEffect)
             Toggle.enabled = false;
     }
 }
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

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

140 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 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 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 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 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 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 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

How to make SphereCastAll retrieve all hits with a concave mesh ? 0 Answers

Changing shape of player jump path 0 Answers

Spawned objects sink through ground, when over 3 clones 0 Answers

Collision Detection issue 1 Answer

How to determine on collision if an object is rotated in a certain way 1 Answer


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