This commit is contained in:
Даниил Заикин
2026-06-17 20:44:53 +03:00
parent 9d153773c2
commit b133e7c656
1880 changed files with 244545 additions and 0 deletions
@@ -0,0 +1,33 @@
using UnityEngine;
namespace NaughtyAttributes.Test
{
public class ShowNonSerializedFieldTest : MonoBehaviour
{
#pragma warning disable 414
[ShowNonSerializedField]
private ushort myUShort = ushort.MaxValue;
[ShowNonSerializedField]
private short myShort = short.MaxValue;
[ShowNonSerializedField]
private uint myUInt = uint.MaxValue;
[ShowNonSerializedField]
private int myInt = 10;
[ShowNonSerializedField]
private ulong myULong = ulong.MaxValue;
[ShowNonSerializedField]
private long myLong = long.MaxValue;
[ShowNonSerializedField]
private const float PI = 3.14159f;
[ShowNonSerializedField]
private static readonly Vector3 CONST_VECTOR = Vector3.one;
#pragma warning restore 414
}
}