返回介绍

JointLimits 关节限制

发布于 2019-12-18 15:37:54 字数 2130 浏览 919 评论 0 收藏 0

struct in UnityEngine

Description 描述

JointLimits is used by the HingeJoint to limit the joints angle.

关节限制用于铰链关节去限制关节角度。

JavaScript:

function Start() {
	// Set the hinge limits for a door.
	var hinge = GetComponent.<HingeJoint>();
 
	var limits = hinge.limits;
	limits.min = 0;
	limits.max = 90;
	limits.bounciness = 0;
	limits.bounceMinVelocity = 0;
	hinge.limits = limits;
}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Start() {
        HingeJoint hinge = GetComponent<HingeJoint>();
        JointLimits limits = hinge.limits;
        limits.min = 0;
        limits.max = 90;
        limits.bounciness = 0;
        limits.bounceMinVelocity = 0;
        hinge.limits = limits;
    }
}

Variables 变量

bounceMinVelocityThe minimum impact velocity which will cause the joint to bounce.
引起关节反弹的最小碰撞速度
bouncinessDetermines the size of the bounce when the joint hits it's limit. Also known as restitution.
当关节触及它的限制条件时确定反弹力大小。也称为返还力。
contactDistanceDistance inside the limit value at which the limit will be considered to be active by the solver.
限制值内部的距离,该限制将会考虑通过解算机激活。
maxThe upper angular limit (in degrees) of the joint.
关节的上限。
minThe lower angular limit (in degrees) of the joint.
关节下限(单位度)。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文