JointLimits.minBounce 最小反弹力

var minBounce : float

Description描述

The bounciness of the joint when hitting the lower limit of the joint.

当达到关节的下限时,关节的反弹力。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		hingeJoint.limits.minBounce = 1;
	}
}
// Set the joint to bounce off when hitting the lower limit
//当达到下限时,设置关节的反弹力

hingeJoint.limits.minBounce = 1;
最后修改:2011年1月27日 Thursday 15:09

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。