Legacy Documentation: Version 2018.1 (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.emitterVelocityMode

Switch to Manual
public ParticleSystemEmitterVelocityMode emitterVelocityMode;

Description

Control how the Particle System calculates its velocity, when moving in the world.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public ParticleSystemEmitterVelocityMode velocityMode;

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

void Update() { var main = ps.main; main.emitterVelocityMode = velocityMode; }

void OnGUI() { velocityMode = (ParticleSystemEmitterVelocityMode)GUI.SelectionGrid(new Rect(25, 25, 300, 30), (int)velocityMode, new GUIContent[] { new GUIContent("Transform"), new GUIContent("Rigidbody") }, 2); } }

Did you find this page useful? Please give it a rating: