ランダムな値を取得して遊ぶ
void Start(){ | |
// ランダムな値を取得する | |
float random = Random.value; | |
Debug.Log("random : " + random); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
void Start(){ | |
// ランダムな値を取得する | |
float random = Random.value; | |
Debug.Log("random : " + random); | |
} |