Created
December 30, 2016 20:15
-
-
Save unity3dcollege/02765b70798bbbf9a98d3e4998957758 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
public class NPCParticles : MonoBehaviour | |
{ | |
[SerializeField] private ParticleSystem deathParticlePrefab; | |
private void Start() | |
{ | |
GetComponent<IHealth>().OnDied += HandleNPCDied; | |
} | |
private void HandleNPCDied() | |
{ | |
var deathparticle = Instantiate(deathParticlePrefab, transform.position, transform.rotation); | |
Destroy(deathparticle, 4f); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment