Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

Collision.relativeVelocity

public var relativeVelocity: Vector3;

Description

The relative linear velocity of the two colliding objects (Read Only).

	// Play a sound when we hit an object with a big velocity
	function OnCollisionEnter(collision : Collision) {
		if (collision.relativeVelocity.magnitude > 2)
			audio.Play();
	}