Files
RedHotRoast-ios/Assets/Scripts/Define/Constant/LayerMaskConst.cs
T

13 lines
348 B
C#
Raw Normal View History

2026-04-22 09:52:55 +08:00
using UnityEngine;
namespace LoveLegend
2026-04-22 09:52:55 +08:00
{
public static class LayerMaskConst
{
public const string Default_Name = "Default";
public const string UI_Name = "UI";
public readonly static int Default = LayerMask.NameToLayer(Default_Name);
public readonly static int UI = LayerMask.NameToLayer(UI_Name);
}
}