Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

CharacterController.isGrounded

Switch to Manual
public var isGrounded: bool;

Description

Was the CharacterController touching the ground during the last move?

	function Update () {
		var controller : CharacterController = GetComponent(CharacterController);
		if (controller.isGrounded)
			print("We are grounded");
	}