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.

Rigidbody.AddTorque

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public function AddTorque(torque: Vector3, mode: ForceMode = ForceMode.Force): void;
public void AddTorque(Vector3 torque, ForceMode mode = ForceMode.Force);
public def AddTorque(torque as Vector3, mode as ForceMode = ForceMode.Force) as void

Description

Adds a torque to the rigidbody.

As a result the rigidbody will start spinning around the torque axis.

	// Spins the rigidbody around the global y-axis

function FixedUpdate () { rigidbody.AddTorque (Vector3.up * 10); }
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void FixedUpdate() {
        rigidbody.AddTorque(Vector3.up * 10);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def FixedUpdate() as void:
		rigidbody.AddTorque((Vector3.up * 10))

If you want to apply a force over several frames you should apply it inside FixedUpdate instead of Update.

public function AddTorque(x: float, y: float, z: float, mode: ForceMode = ForceMode.Force): void;
public void AddTorque(float x, float y, float z, ForceMode mode = ForceMode.Force);
public def AddTorque(x as float, y as float, z as float, mode as ForceMode = ForceMode.Force) as void

Description

Adds a torque to the rigidbody.

As a result the rigidbody will start spinning around the torque axis.

	// Spins the rigidbody around the global y-axis
	function FixedUpdate () {
		rigidbody.AddTorque (0, 10, 0);
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void FixedUpdate() {
        rigidbody.AddTorque(0, 10, 0);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def FixedUpdate() as void:
		rigidbody.AddTorque(0, 10, 0)