Мои Уведомления
Привет, !
Мой Аккаунт Мои Финансы Мои Подписки Мои Настройки Выход
Руководство API скрипты
public bool enabled;

Описание

Указывает, включен ли CustomDataModule.

Смотрите так же: ParticleSystem.customData.

using UnityEngine; using System.Collections; [RequireComponent(typeof(ParticleSystem))] public class ExampleClass : MonoBehaviour { private ParticleSystem ps; public bool moduleEnabled; void Start() { ps = GetComponent<ParticleSystem>(); } void Update() { var customData = ps.customData; customData.enabled = moduleEnabled; } void OnGUI() { moduleEnabled = GUI.Toggle(new Rect(25, 45, 100, 30), moduleEnabled, "Enabled"); } }
Вы можете отблагодарить автора, за перевод документации на русский язык. ₽ Спасибо
API скрипты 2021.3