Files
FueraDeEscala/Assets/PixPlays/Components/Scripts/VfxSystem/ParticleSystemVfx.cs

21 lines
387 B
C#
Raw Normal View History

2026-03-29 23:03:14 -07:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace PixPlays.ElementalVFX
{
public class ParticleSystemVfx : VfxReference
{
[SerializeField] ParticleSystem _Vfx;
public override void Play()
{
_Vfx.Play();
}
public override void Stop()
{
_Vfx.Stop();
}
}
}