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

スクリプト言語

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

ParticleSystem.inheritVelocity

マニュアルに切り替える
public ParticleSystem.InheritVelocityModule inheritVelocity;

説明

Velocity Inheritance モジュールにアクセスします。

using UnityEngine;
using System.Collections;

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

AnimationCurve curve = new AnimationCurve(); curve.AddKey( 0.0f, 1.0f ); curve.AddKey( 1.0f, 0.0f ); iv.curve = new ParticleSystem.MinMaxCurve(1.0f, curve); } }