GameVsJam/3d Prototyp/Assets/Scripts/Utility/ShowOnlyAttribute.cs

11 lines
231 B
C#
Raw Permalink Normal View History

using UnityEngine;
namespace Utility
{
/// <summary>
/// Das Feld wird im Inspector nur angezeigt und kann nicht verändert werden.
/// </summary>
public class ShowOnlyAttribute : PropertyAttribute
{
}
}