Created
October 31, 2014 11:53
-
-
Save mizutanikirin/b66bdc176705c6366f4b to your computer and use it in GitHub Desktop.
Unityで整数乱数を生成する
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
// 0~9の間の整数乱数を生成する | |
int rnd = Random.Range(0, 9); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment