Test
This commit is contained in:
@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
namespace UnityStandardAssets.Effects
|
||||
{
|
||||
public class ParticleSystemMultiplier : MonoBehaviour
|
||||
{
|
||||
// a simple script to scale the size, speed and lifetime of a particle system
|
||||
|
||||
public float multiplier = 1;
|
||||
|
||||
|
||||
private void Start()
|
||||
{
|
||||
var systems = GetComponentsInChildren<ParticleSystem>();
|
||||
foreach (ParticleSystem system in systems)
|
||||
{
|
||||
ParticleSystem.MainModule mainModule = system.main;
|
||||
mainModule.startSizeMultiplier *= multiplier;
|
||||
mainModule.startSpeedMultiplier *= multiplier;
|
||||
mainModule.startLifetimeMultiplier *= Mathf.Lerp(multiplier, 1, 0.5f);
|
||||
system.Clear();
|
||||
system.Play();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user