JointDrive.positionDamper

Switch to Manual
public float positionDamper ;

Description

针对位置弹簧的抗力。仅当 mode 包含 Position 时使用。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { 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; } }