Version: 2020.2
public void WakeUp ();

描述

强制唤醒刚体。

有关 Rigidbody 休眠的更多信息,请参阅手册中的刚体概述页面。

using UnityEngine;

public class ExampleScript : MonoBehaviour { private float fallTime; private Rigidbody rbGO; private bool sleeping;

void Start() { rbGO = gameObject.AddComponent<Rigidbody>(); rbGO.mass = 10.0f; Physics.gravity = new Vector3(0, -2.0f, 0); sleeping = false; fallTime = 0.0f; }

void Update() { if (fallTime > 1.0f) { if (sleeping) { rbGO.WakeUp(); Debug.Log("wakeup"); } else { rbGO.Sleep(); Debug.Log("sleep"); }

sleeping = !sleeping;

fallTime = 0.0f; }

fallTime += Time.deltaTime; } }