Created
November 15, 2019 20:03
-
-
Save inertiave/4ca9a76d52b309f7734eab7a4350c0c0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
public class Sample : MonoBehaviour { | |
public string publicField; | |
[ReadOnly] | |
public string readOnlyField; | |
[ReadOnly(EReadOnlyType.FULLY_DISABLED)] | |
public bool fullReadOnly; | |
[ReadOnly(EReadOnlyType.EDITABLE_RUNTIME)] | |
public bool editableRuntime; | |
[ReadOnly(EReadOnlyType.EDITABLE_EDITOR)] | |
public bool editableEditor; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment