Skip to content

Instantly share code, notes, and snippets.

View nathanenglert's full-sized avatar

Nathan Englert nathanenglert

View GitHub Profile
@nathanenglert
nathanenglert / ShowOnlyAttribute.cs
Last active November 25, 2016 16:24
Unity - Read-only Text in Inspector
// Reference: http://answers.unity3d.com/questions/489942/how-to-make-a-readonly-property-in-inspector.html
using UnityEngine;
namespace Assets.Scripts.Helpers
{
public class ShowOnlyAttribute : PropertyAttribute
{
}
}