Files
SampleRenderPasses/Assets/Attributes/Editor/ShowLevelAttributeEditor.cs
2025-05-18 22:39:39 +03:00

15 lines
357 B
C#

using Golems.Attributes;
namespace Golems
{
public partial class AttributesEditor
{
/// <summary>
/// Show the ShowLevelAttributes
/// </summary>
private void OnInspectorGUIShowLevelAttribute()
{
ShowLevelAttribute.EditorShowLevelInfo(target, "<color=green>Level info</color>");
}
}
}