Version: 2020.2
public void AddSprite (Sprite sprite);

参数

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); } }