粒子系统的 ExternalForcesModule 的脚本接口。
此模块允许 ParticleSystemForceField 和 WindZone 组件影响粒子系统。
粒子系统模块不需要重新分配回系统;它们是接口,而不是独立对象。
using UnityEngine; using System.Collections;
[RequireComponent(typeof(ParticleSystem))] public class ExampleClass : MonoBehaviour { void Start() { ParticleSystem ps = GetComponent<ParticleSystem>(); var ex = ps.externalForces; ex.enabled = true; ex.multiplier = 0.1f; } }