JointLimits.maxBounce 最大反弹力

var maxBounce : float

Description描述

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

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

using UnityEngine;
using System.Collections;

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

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

本脚本参考基于Unity 3.4.1f5

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