ShowOnlyAttribute

This commit is contained in:
Simon Lübeß
2024-04-04 15:23:38 +02:00
parent 13472c4a72
commit 06b096b907
4 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,8 @@
using UnityEngine;
/// <summary>
/// Das Feld wird im Inspector nur angezeigt und kann nicht verändert werden.
/// </summary>
public class ShowOnlyAttribute : PropertyAttribute
{
}