add some extra assets FX and SFX
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user