Version: 2020.1
言語: 日本語
public float positionDamper ;

説明

バネの抵抗の強さを設定する。モードが 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; } }