Last active
June 14, 2018 05:06
-
-
Save todorok1/42548938108b3283ddcbd43f5e312d1c to your computer and use it in GitHub Desktop.
RangeAttributeの使い方あれこれ
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
const int MinLevel = 1; | |
const int MaxLevel = 255; | |
[Range(MinLevel, MaxLevel)][SerializeField] | |
int level; | |
[Range(MinLevel, MaxLevel)][SerializeField] | |
string characterName = "maruyu"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment