Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

ParticleSystem.forceOverLifetime

マニュアルに切り替える
public ParticleSystem.ForceOverLifetimeModule forceOverLifetime;

説明

Force Over Lifetime モジュールにアクセスします。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { ParticleSystem ps = GetComponent<ParticleSystem>(); var fo = ps.forceOverLifetime; fo.enabled = true;

AnimationCurve curve = new AnimationCurve(); curve.AddKey( 0.0f, 0.1f ); curve.AddKey( 0.75f, 1.0f ); fo.x = new ParticleSystem.MinMaxCurve(1.5f, curve); } }