Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Random.onUnitSphere

Switch to Manual
public static var onUnitSphere: Vector3;

Description

Returns a random point on the surface of a sphere with radius 1 (Read Only).

	// Sets the rigidbody velocity to 10 and in a random direction.

GetComponent.<Rigidbody>().velocity = Random.onUnitSphere * 10;