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

ParticleSystem.TrailModule.widthOverTrailMultiplier

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public float widthOverTrailMultiplier;

Description

Change the width multiplier.

This is more efficient than accessing the whole curve, if you only want to change the overall width multiplier.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public bool widthOverTrail = true;

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

var main = ps.main; main.startColor = new ParticleSystem.MinMaxGradient(Color.red, Color.yellow); main.startSize = new ParticleSystem.MinMaxCurve(0.01f, 1.0f); main.startLifetime = 1.5f;

var trails = ps.trails; trails.enabled = true;

var psr = GetComponent<ParticleSystemRenderer>(); psr.trailMaterial = new Material(Shader.Find("Sprites/Default")); }

void Update() { var trails = ps.trails; if (widthOverTrail) trails.widthOverTrailMultiplier = 0.2f; else trails.widthOverTrailMultiplier = 1.0f; }

void OnGUI() { widthOverTrail = GUI.Toggle(new Rect(25, 25, 200, 30), widthOverTrail, "Width over Trail"); } }

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