Version: 2022.1
言語: 日本語
public bool enabled ;

説明

Specifies whether the LimitForceOverLifetimeModule is enabled or disabled.

関連項目: ParticleSystem.limitForceOverLifetime.

using UnityEngine;
using System.Collections;

[RequireComponent(typeof(ParticleSystem))] public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public bool moduleEnabled = true; public float hSliderValueSpeed = 0.0f; public float hSliderValueDampen = 0.1f;

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

void Update() { var limitVelocityOverLifetime = ps.limitVelocityOverLifetime; limitVelocityOverLifetime.enabled = moduleEnabled; limitVelocityOverLifetime.limitMultiplier = hSliderValueSpeed; limitVelocityOverLifetime.dampen = hSliderValueDampen; }

void OnGUI() { moduleEnabled = GUI.Toggle(new Rect(25, 45, 200, 30), moduleEnabled, "Enabled");

GUI.Label(new Rect(25, 80, 100, 30), "Speed Limit"); GUI.Label(new Rect(25, 120, 100, 30), "Dampen");

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