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

29 lines
No EOL
847 B
C#

using CinemaDirector.Helpers;
using System.Collections.Generic;
using UnityEngine;
namespace CinemaDirector
{
/// <summary>
/// Enable the Actor related to this event.
/// </summary>
[CutsceneItemAttribute("Particle System", "Pause", CutsceneItemGenre.ActorItem)]
public class PauseParticleSystemEvent : CinemaActorEvent
{
/// <summary>
/// Trigger this event and pause the particle system component.
/// </summary>
/// <param name="actor">The actor to be triggered.</param>
public override void Trigger(GameObject actor)
{
if (actor != null)
{
ParticleSystem ps = actor.GetComponent<ParticleSystem>();
if (ps != null)
{
ps.Pause();
}
}
}
}
}