Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created June 13, 2018 08:45
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/741533c281d25a16aa5d7e0acc1f5655 to your computer and use it in GitHub Desktop.
Save todorok1/741533c281d25a16aa5d7e0acc1f5655 to your computer and use it in GitHub Desktop.
RangeAttributeの使い方あれこれ
// 最小値は0、最大値は255としてスライダーを表示
[Range(0, 255)]
public int hp;
// Rangeを設定してもprivateだと表示されない
[Range(0, 255)]
int mp;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment