Skip to content

Instantly share code, notes, and snippets.

@jweimann
Created December 29, 2016 06:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jweimann/f4a64d6fb7d478a0e010296ac2ddb678 to your computer and use it in GitHub Desktop.
Save jweimann/f4a64d6fb7d478a0e010296ac2ddb678 to your computer and use it in GitHub Desktop.
using UnityEngine;
public class NPCParticles : MonoBehaviour
{
[SerializeField] private ParticleSystem deathParticlePrefab;
private void Start()
{
GetComponent<NPC>().OnNPCDied += 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