版本:Unity 6 (6000.0)
语言英语
  • C#

JointDrive.positionSpring

建议进行更改

成功!

感谢您帮助我们改进 Unity 文档的质量。虽然我们无法接受所有提交,但我们会阅读来自用户的每条建议更改,并在适用时进行更新。

关闭

提交失败

由于某些原因,我们无法提交您建议的更改。请在几分钟后<a>重试</a>。感谢您抽出时间帮助我们改进 Unity 文档的质量。

关闭

取消

public float positionSpring;

说明

朝着已定义方向施加的橡皮筋拉力强度。仅在mode包含位置时使用。

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.positionSpring = 20;

joint.zDrive = drive; } }