NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Common/LayerDefine.cs

30 lines
664 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gameplay.Common
{
public static class LayerDefine
{
public const int UIView = 3;
public const int UI = 5;
public const int UNIT = 6;
public const int GROUND = 7;
public const int Skill = 8;
public const int TeamEdit = 9;
/// <summary>
/// 头部渲染层
/// </summary>
public const int UnitHead = 12;
/// <summary>
/// UI最高层级盖住特效和模型
/// </summary>
public const int UITop = 15;
}
}