7 lines
127 B
C#
7 lines
127 B
C#
using UnityEngine;
|
|
|
|
public class ReadOnly : MonoBehaviour
|
|
{
|
|
[NaughtyAttributes.ReadOnly]
|
|
public int readOnlyInt = 5;
|
|
}
|