Version: 2021.2
언어: 한국어

SortingLayer.GetLayerValueFromID

매뉴얼로 전환
public static int GetLayerValueFromID (int id);

파라미터

id The unique value of the sorting layer as returned by any renderer's sortingLayerID property.

반환

int The final sorting value of the layer relative to other layers.

설명

Returns the final sorting layer value. To determine the sorting order between the various sorting layers, use this method to retrieve the final sorting value and use CompareTo to determine the order.

using UnityEngine;

public class ExampleClass : MonoBehaviour { int CompareLayer(GameObject rhs, GameObject lhs) { int rval = SortingLayer.GetLayerValueFromID(rhs.GetComponent<SpriteRenderer>().sortingLayerID); int lval = SortingLayer.GetLayerValueFromID(lhs.GetComponent<SpriteRenderer>().sortingLayerID); return rval.CompareTo(lval); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961