Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ParticleSystem.MainModule.maxParticles

Switch to Manual
public int maxParticles;

Description

The maximum number of particles to emit.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float hSliderValue = 0.0F; private ParticleSystem part;

void Start() { part = GetComponent<ParticleSystem>(); }

void Update() { var main = ps.main; main.maxParticles = Mathf.RoundToInt(hSliderValue); }

void OnGUI() { hSliderValue = GUI.HorizontalSlider(new Rect(25, 25, 100, 30), hSliderValue, 0.0F, 100.0F); } }