Version: 2020.1
public float maximumForce ;

描述

将对象朝已定义方向推动所施加的力的大小。

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.Velocity; drive.maximumForce = Mathf.Infinity;;

joint.zDrive = drive; } }