1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Unity】ParticleSystemのsortingOrderをスクリプト側から変更する

Last updated at Posted at 2016-01-28

※この記事で使っているUnityのバージョンは Unity5.2.1p3 です。

ParticleSystemコンポーネントのsortingOrderを変更する

ParticleSystemのsortingOrderを変更したい場合、Rendererを取得してsortingOrderを変更するといいみたいです。

ソースコード

using UnityEngine;
using System.Collections;
using System.Reflection;

public class ParticleSystemWriter : MonoBehaviour
{
  void Awake()
  {
    var ps = this.gameObject.GetComponent<ParticleSystem>();
    var r = ps.GetComponent<Renderer>();

    // sortingOrderに-1234を代入
    r.sortingOrder = -1234;
  }
}

実行結果

適用前
image

適用後
image

sortingOrderに-1234が代入されました.


パーティクルエディタウィンドウのsortingOrderを一括変更する

ソースコード

using UnityEngine;
using System.Reflection;

public class ParticleSystemWriter : MonoBehaviour
{
  void Awake()
  {
    this.Set(this.transform.GetComponent<ParticleSystem>());
    foreach (Transform t in this.transform)
    {
      var ps = t.GetComponent<ParticleSystem>();
      this.Set(ps);
    }
  }
  void Set(ParticleSystem ps)
  {
    var r = ps.GetComponent<Renderer>();

    // sortingOrderに-1234を代入
    r.sortingOrder = -1234;

  }
}

実行結果

適用前
image

適用後
image
全てのsortingOrderに-1234が代入されました.

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?