Floating! Help!

My character isn't hitting the ground, she floats a couple of inches above it. She walks fine and all that, but she just won't touch the ground! Her controller isn't past her feet either, so I'm not sure why she isn't hitting the ground. Can anyone help!?

3 Answers

3

When you place your player into the scene, you must make sure its actually touching the ground. Did you try that?

Ok try theses 3 things first of all check to see if your floor has a box collider on it if it has a different one change it to the box collider and delete the old collider.

No 2: Make sure if your player has a character controller on it make sure the collier is a bit above the feet's and then try.

3RD: If you dont have gravity applied to the player try this :

on the star function add:

      function Start ()
  {

         Physics.gravity = Vector3(0,-1000,0);

    }

that will add gravity to the player :)

Just make BoxCollider's bottom near the feet of ur character )that must be working