Version: 2021.3
언어: 한국어
public float multiplier ;

설명

Multiplies the magnitude of external forces affecting the particles.

Changing this property is more efficient than accessing the entire curve, if you only want to change the overall force multiplier.

using UnityEngine;
using System.Collections;

[RequireComponent(typeof(ParticleSystem))] public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public bool moduleEnabled = true; public float hSliderValue = 10.0f;

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

GameObject wind = new GameObject("Wind", typeof(WindZone)); wind.transform.parent = ps.transform; wind.transform.localPosition = new Vector3(-4.0f, 0.0f, 0.0f); wind.GetComponent<WindZone>().mode = WindZoneMode.Spherical; }

void Update() { var externalForces = ps.externalForces; externalForces.enabled = moduleEnabled; externalForces.multiplier = hSliderValue; }

void OnGUI() { moduleEnabled = GUI.Toggle(new Rect(25, 45, 100, 30), moduleEnabled, "Enabled"); hSliderValue = GUI.HorizontalSlider(new Rect(25, 85, 100, 30), hSliderValue, 0.0f, 100.0f); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961