Unity 6.3
0 онлайн 91 гостей 3 в системе
Вход

ParticleSystem.ShapeModule.enabled

Declaration

public bool enabled;

Описание

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

Дополнительные ресурсы: ,ParticleSystem.shape,.

using UnityEngine;
using System.Collections;

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

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

void Update() { var shape = ps.shape; shape.enabled = moduleEnabled; }

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