Health/Assets/ThirdParty/StompyRobot/SRDebugger/Scripts/UI/Other/SetLayerFromSettings.cs

13 lines
242 B
C#
Raw Normal View History

2023-11-21 08:57:37 +00:00
namespace SRDebugger.UI.Other
{
using SRF;
public class SetLayerFromSettings : SRMonoBehaviour
{
private void Start()
{
gameObject.SetLayerRecursive(Settings.Instance.DebugLayer);
}
}
}