纳金网

标题: 开发技巧-UI分层 [打印本页]

作者: 烟雨    时间: 2018-8-17 02:13
标题: 开发技巧-UI分层

  1. using UnityEngine;
  2. using System.Collections;

  3. [ExecuteInEditMode()]  
  4. public class SetRenderingLayer : MonoBehaviour
  5. {
  6.         public string sortingLayer;             //分类层
  7.     public int sortingOrder;                //排序顺序

  8.     void Start()
  9.         {
  10.                 this.GetComponent<Renderer>().sortingLayerName = sortingLayer;
  11.                 this.GetComponent<Renderer>().sortingOrder = sortingOrder;
  12.         }
  13. }
复制代码





欢迎光临 纳金网 (http://go.narkii.com/club/) Powered by Discuz! X2.5