Initial commit

This commit is contained in:
HussienX72u
2026-07-21 08:56:10 +03:00
commit 4017028111
9410 changed files with 2150500 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
}
}