SquareDash/Library/PackageCache/com.unity.ai.navigation@2.0.0/Samples~/Scripts/EnableIffSleeping.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

31 lines
779 B
C#

using UnityEngine;
namespace Unity.AI.Navigation.Samples
{
/// <summary>
/// Enables a behaviour when a rigidbody settles movement
/// otherwise disables the behaviour
/// </summary>
public class EnableIffSleeping : MonoBehaviour
{
public Behaviour m_Behaviour;
Rigidbody m_Rigidbody;
void Start()
{
m_Rigidbody = GetComponent<Rigidbody>();
}
void Update()
{
if (m_Rigidbody == null || m_Behaviour == null)
return;
if (m_Rigidbody.IsSleeping() && !m_Behaviour.enabled)
m_Behaviour.enabled = true;
if (!m_Rigidbody.IsSleeping() && m_Behaviour.enabled)
m_Behaviour.enabled = false;
}
}
}