You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
570 B
30 lines
570 B
3 years ago
|
using System;
|
||
|
using UnityEngine;
|
||
|
|
||
|
|
||
|
namespace UnityStandardAssets.Effects
|
||
|
{
|
||
|
public class ExtinguishableParticleSystem : MonoBehaviour
|
||
|
{
|
||
|
public float multiplier = 1;
|
||
|
|
||
|
private ParticleSystem[] m_Systems;
|
||
|
|
||
|
|
||
|
private void Start()
|
||
|
{
|
||
|
m_Systems = GetComponentsInChildren<ParticleSystem>();
|
||
|
}
|
||
|
|
||
|
|
||
|
public void Extinguish()
|
||
|
{
|
||
|
foreach (var system in m_Systems)
|
||
|
{
|
||
|
var emission = system.emission;
|
||
|
emission.enabled = false;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|