About 51 results
Open links in new tab
  1. c# - Unity Character Controller's colliders are not colliding with ...

    May 26, 2024 · 1 In Unity the CharacterControler colliders are colliding with each other, normal colliders are colliding with each other but CharacterController colliders are not colliding with normal colliders. …

  2. How would I go about creating gravity for the Unity Character Controller?

    Sep 25, 2023 · How would I go about creating gravity for the Unity Character Controller? Ask Question Asked 2 years, 6 months ago Modified 2 years, 6 months ago

  3. c# - Unity Character controller bouncing - Stack Overflow

    Jul 5, 2022 · I tried to edit the fbx model, change the anchor point, change the position of the Character controller on the object. When I removed the animator, the problem disappeared, but I need to use …

  4. unity - Character controller that can handle sloped terrain and boxy ...

    Sep 19, 2023 · Custom character controller that uses Unity methods to detect geometric collisions, but does its own collision resolution via depenetration (this method is illustrated in Roystan Ross tutorial …

  5. unity game engine - How to fix Character Controller jumping up steep ...

    Jul 27, 2022 · I'm using a 3d character controller for my player but I can't figure out how to stop it from being able to jump up steep slopes. I've looked around and could only find one video that fixes the …

  6. Unity Charactercontroller component Question - Stack Overflow

    Dec 14, 2022 · The solution is the specialized Character Controller. For those reasons, if you actually want Rigidbody behavior, your best option will be to give up on the Character Controller and …

  7. Gravity not applying to my character controller (Unity)

    Oct 28, 2022 · Unity Character Controller component doesn't use Gravity by itself. When you use CharacterController.SimpleMove() in your code, it calls Gravity and when you use …

  8. Unity CharacterController move player with platform - Stack Overflow

    Oct 3, 2023 · I tried two approaches The first one is to make player’s game object child of moving platform, but it doesn’t work, i guess it’s because Character Controller’s position is changing in …

  9. How to add "jump" in C# script in Unity3d using Character Controller?

    Jun 16, 2020 · 4 There is no need to calculate the angle and the rotation of the character since these are already calculated for you by Unity when you are using the CharacterController class. To jump, you …

  10. My character controller is automatically applying gravity in unity?

    Oct 1, 2020 · I am working in Unity using C# and I have encountered a problem with my code. The Character Controller that I attached to my player is automatically dragging the player down. I am …