Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


mode

Whether the drive should attempt to reach position, velocity, both or nothing.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.PhysicsModule
Warning
Deprecated. JointDriveMode is obsolete
public JointDriveMode mode { get; set; }

Examples

using UnityEngine;public class Example : MonoBehaviour{ // Create a JointDrive, configure it and assign the JointDrive to // the zDrive element of a configurable joint. void Start() { ConfigurableJoint joint = gameObject.AddComponent<ConfigurableJoint>(); joint.targetPosition = new Vector3(0, 0, -10); JointDrive drive = new JointDrive(); drive.positionSpring = 50; drive.mode = JointDriveMode.Position; joint.zDrive = drive; }}