FiE-Game/Assets/Cinema Director/Cutscene Items/Actor Items/Rigidbody/RigidbodyWakeUpEvent.cs
2023-07-27 00:47:00 +05:00

37 lines
No EOL
1.1 KiB
C#

using UnityEngine;
namespace CinemaDirector
{
/// <summary>
/// Event to wake up the rigidbody of a given actor.
/// </summary>
[CutsceneItemAttribute("Physics", "Wake Up", CutsceneItemGenre.ActorItem)]
public class RigidbodyWakeUpEvent : CinemaActorEvent
{
/// <summary>
/// Trigger this event and wake up the rigidbody component of the given actor.
/// </summary>
/// <param name="actor">The actor to wake up.</param>
public override void Trigger(GameObject actor)
{
Rigidbody rb = actor.GetComponent<Rigidbody>();
if (rb != null)
{
rb.WakeUp();
}
}
/// <summary>
/// Trigger this event and wake up the rigidbody component of the given actor.
/// </summary>
/// <param name="actor">The actor to wake up.</param>
public override void Reverse(GameObject actor)
{
Rigidbody rb = actor.GetComponent<Rigidbody>();
if (rb != null)
{
rb.Sleep();
}
}
}
}