Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

ParticleSystem.TextureSheetAnimationModule.AddSprite

Switch to Manual
public void AddSprite(Sprite sprite);

Parameters

spriteThe Sprite to be added.

Description

Add a new Sprite.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { private ParticleSystem ps; private Sprite sprite;

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

sprite = Sprite.Create(Texture2D.whiteTexture, new Rect(0, 0, 1, 1), Vector2.zero);

var textureSheetAnimation = ps.textureSheetAnimation; textureSheetAnimation.enabled = true; textureSheetAnimation.mode = ParticleSystemAnimationMode.Sprites; textureSheetAnimation.AddSprite(sprite); } }

Did you find this page useful? Please give it a rating: