Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

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

ParticleSystem.TextureSheetAnimationModule.AddSprite

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public method AddSprite(sprite: Sprite): void;
public void AddSprite(Sprite sprite);

Parameters

spriteThe Sprite to be added.

Description

Add a new Sprite.

#pragma strict
private var ps: ParticleSystem;
private var sprite: Sprite;
function Start() {
	ps = GetComponent.<ParticleSystem>();
	sprite = Sprite.Create(Texture2D.whiteTexture, new Rect(0, 0, 1, 1), Vector2.zero);
	var textureSheetAnimation: var = ps.textureSheetAnimation;
	textureSheetAnimation.enabled = true;
	textureSheetAnimation.mode = ParticleSystemAnimationMode.Sprites;
	textureSheetAnimation.AddSprite(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); } }