Files
plugin-library/Assets/UI/Scripts/UIFramework/Runtime/Other/Layer.cs
2025-09-18 18:25:40 +08:00

16 lines
365 B
C#

using System;
using System.Collections.Generic;
namespace SkierFramework
{
public static class Layer
{
public const int Default = 0;
public const int TransparentFX = 1;
public const int IgnoreRaycast = 2;
public const int Water = 4;
public const int UI = 5;
public const int UIRenderToTarget = 6;
}
}