You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
using UnityEngine;
|
|
|
|
namespace NaughtyAttributes.Test
|
|
{
|
|
public class SortingLayerTest : MonoBehaviour
|
|
{
|
|
[SortingLayer]
|
|
public int layerNumber0;
|
|
|
|
[SortingLayer]
|
|
public string layerName0;
|
|
|
|
public SortingLayerNest1 nest1;
|
|
|
|
[Button]
|
|
public void DebugLog()
|
|
{
|
|
Debug.LogFormat("{0} = {1}", nameof(layerNumber0), layerNumber0);
|
|
Debug.LogFormat("{0} = {1}", nameof(layerName0), layerName0);
|
|
Debug.LogFormat("LayerToName({0}) = {1}", layerNumber0, SortingLayer.IDToName(layerNumber0));
|
|
Debug.LogFormat("NameToLayer({0}) = {1}", layerName0, SortingLayer.NameToID(layerName0));
|
|
}
|
|
}
|
|
|
|
[System.Serializable]
|
|
public class SortingLayerNest1
|
|
{
|
|
[SortingLayer]
|
|
public int layerNumber1;
|
|
|
|
[SortingLayer]
|
|
public string layerName1;
|
|
|
|
public SortingLayerNest2 nest2;
|
|
}
|
|
|
|
[System.Serializable]
|
|
public struct SortingLayerNest2
|
|
{
|
|
[SortingLayer]
|
|
public int layerNumber2;
|
|
|
|
[SortingLayer]
|
|
public string layerName2;
|
|
}
|
|
}
|