Manual     Reference     Scripting  
  
Scripting > Runtime Classes > JointMotor   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Attributes
  • Enumerations
  • History
  • Index
  • JointMotor
  • All Members
  • Variables
  • force
  • freeSpin
  • targetVelocity

JointMotor.targetVelocity  

var targetVelocity : float

Description

The motor will apply a force up to force to achieve targetVelocity.

JavaScript
// Achieve 10 m/s.
hingeJoint.motor.targetVelocity = 10;

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
hingeJoint.motor.targetVelocity = 10;
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
hingeJoint.motor.targetVelocity = 10