Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created June 12, 2018 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save todorok1/c8cc2f33632cfff8a2fc743188ad0341 to your computer and use it in GitHub Desktop.
Save todorok1/c8cc2f33632cfff8a2fc743188ad0341 to your computer and use it in GitHub Desktop.
SerializeFieldとNonSerializedの頂上バトル
public class NonSerializedCheck : MonoBehaviour {
// [System.NonSerialized]をつけてInspectorで非表示にする
[System.NonSerialized]
public int level = 711;
// [System.NonSerialized]をつけないケース
public string characterName;
// イカ、略
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment