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.

var relativeTorque: Vector3;
Vector3 relativeTorque;
relativeTorque as Vector3

Description

The torque - relative to the rigid bodies coordinate system - applied every frame.

	// Rotates the object around the its own x-axis
	constantForce.relativeTorque = Vector3.right * 2;
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        constantForce.relativeTorque = Vector3.right * 2;
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Example() as void:
		constantForce.relativeTorque = (Vector3.right * 2)