Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

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

Vector3.operator -

static function operator -(a: Vector3, b: Vector3): Vector3;

Description

Subtracts one vector from another.

Subtracts each component of b from a.

	// prints (-5.0,-3.0,-1.0)
	print (Vector3(1,2,3) - Vector3(6,5,4));
static function operator -(a: Vector3): Vector3;

Description

Negates a vector.

Each component in the result is negated.

	// prints (-1.0,-2.0,-3.0)
	print (-Vector3(1,2,3));