Files
2026-02-21 16:45:37 +08:00

13 lines
204 B
C#

using SRF;
namespace SRDebugger.UI.Other
{
public class SetLayerFromSettings : SRMonoBehaviour
{
private void Start()
{
base.gameObject.SetLayerRecursive(Settings.Instance.DebugLayer);
}
}
}