Version: 2017.1
public bool isGrounded ;

描述

在上次移动期间 CharacterController 是否接触地面?

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Update() { CharacterController controller = GetComponent<CharacterController>(); if (controller.isGrounded) print("We are grounded"); } }