Version: 2018.3 (switch to 2019.1)
LanguageEnglish
  • C#

JointDrive.positionDamper

public float positionDamper;

Description

Resistance strength against the Position Spring. Only used if mode includes Position.

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.mode = JointDriveMode.Position; drive.positionDamper = 30;

joint.zDrive = drive; } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答