public float maximumForce ;

설명

Amount of force applied to push the object toward the defined direction.

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