There is no function that randomly returns true/false in Unity, it can be implemented through Random.value. bool Boolean = (Random.value > 0.5f); ...
確定! 回上一頁