Skip to content

Instantly share code, notes, and snippets.

@todorok1
Last active June 12, 2018 05:37
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/fb8fe506cb97cae2a7dc21b97bb726e8 to your computer and use it in GitHub Desktop.
Save todorok1/fb8fe506cb97cae2a7dc21b97bb726e8 to your computer and use it in GitHub Desktop.
publicと[SerializeField]
public class AttributeChecker : MonoBehaviour {
// publicをつけてInspectorに表示する
public int hp;
// [SerializeField]だとprivateなままInspectorに表示できる
[SerializeField]
int mp;
// イカ、省略
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment