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 System.Collections.Generic; | |
| using UnityEngine; | |
| using System.Linq; | |
| [RequireComponent(typeof(ParticleSystem))] | |
| public class FireworksParticleSoundSystem : MonoBehaviour | |
| { | |
| private ParticleSystem _parentParticleSystem; | |
| private IDictionary<uint, ParticleSystem.Particle> _trackedParticles = new Dictionary<uint, ParticleSystem.Particle>(); |
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 System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using DarkTonic.MasterAudio; | |
| using System; | |
| using System.Linq; | |
| [RequireComponent(typeof(ParticleSystem))] | |
| public class FireworksParticleSoundSystem : MonoBehaviour | |
| { |
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 System.Collections; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| using Hellmade.Sound; | |
| //Script used in https://www.youtube.com/watch?v=jKSz8JJnL4E | |
| [RequireComponent(typeof(ParticleSystem))] | |
| public class FireworksParticleSoundSystem : MonoBehaviour | |
| { | |
| private ParticleSystem _parentParticleSystem; |
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
| <div class="github-card" data-user="laumania"></div> | |
| <script src="http://lab.lepture.com/github-cards/widget.js"></script> |