publicize

This commit is contained in:
Noah Pilarski 2022-08-21 21:01:27 -04:00
parent 581e65db17
commit 135b39c8cc

View File

@ -25,14 +25,14 @@ namespace NewHorizons.Components
private bool _isProxy; private bool _isProxy;
private ParticleSystemRenderer[] _cachedParticleRenderers; private ParticleSystemRenderer[] _cachedParticleRenderers;
private void Awake() public void Awake()
{ {
_cachedParticleRenderers = new ParticleSystemRenderer[_explosionParticles.Length]; _cachedParticleRenderers = new ParticleSystemRenderer[_explosionParticles.Length];
for (int index = 0; index < _explosionParticles.Length; ++index) for (int index = 0; index < _explosionParticles.Length; ++index)
_cachedParticleRenderers[index] = _explosionParticles[index].GetComponent<ParticleSystemRenderer>(); _cachedParticleRenderers[index] = _explosionParticles[index].GetComponent<ParticleSystemRenderer>();
} }
private void OnEnable() public void OnEnable()
{ {
_shockwave.enabled = true; _shockwave.enabled = true;
foreach (var particle in _explosionParticles) particle.Play(); foreach (var particle in _explosionParticles) particle.Play();
@ -48,7 +48,7 @@ namespace NewHorizons.Components
_audioSource.Play(); _audioSource.Play();
} }
private void OnDisable() public void OnDisable()
{ {
_shockwave.enabled = false; _shockwave.enabled = false;
@ -58,7 +58,7 @@ namespace NewHorizons.Components
_audioSource.Stop(); _audioSource.Stop();
} }
private void FixedUpdate() public void FixedUpdate()
{ {
_time += Time.deltaTime; _time += Time.deltaTime;
float shockwaveTime = Mathf.Clamp01(_time / _shockwaveLength); float shockwaveTime = Mathf.Clamp01(_time / _shockwaveLength);