Version: 5.4

ParticleSystem.textureSheetAnimation

Switch to Manual
public ParticleSystem.TextureSheetAnimationModule textureSheetAnimation ;

Description

Прервана ли работа системы частиц на данный момент?

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { ParticleSystem ps = GetComponent<ParticleSystem>(); var ts = ps.textureSheetAnimation; ts.enabled = true; ts.numTilesX = 2; ts.useRandomRow = true; } }