JointLimits.min 最小

var min : float

Description描述

The lower limit of the joint. When the joint angle or position is below it,

the joint will excert forces to constrain it.

关节的下限。当关节角度或位置低于它时,该关节将使用力来约束它。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		hingeJoint.limits.min = 20;
	}
}
// Set the minimum hinge angle to be 20 degrees
//设置最小铰链角度为20度

hingeJoint.limits.min = 20;
最后修改:2011年1月27日 Thursday 15:01

本脚本参考基于Unity 3.4.1f5

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