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

8 lines
185 B
C#
Raw Normal View History

2024-04-04 15:23:38 +02:00
using UnityEngine;
/// <summary>
/// Das Feld wird im Inspector nur angezeigt und kann nicht verändert werden.
/// </summary>
public class ShowOnlyAttribute : PropertyAttribute
{
}