当前位置:   article > 正文

unity关节(joint)讲解_unity中prevjoint坐标系

unity中prevjoint坐标系

关节

关节组件可以添加至多个游戏对象中,而添加关节的游戏对象将通过关节连接在一起并且感觉连带的物理效果。需要注意的是:关节必须依赖于刚体组件。

关节介绍

关节一共分为5大类:链条关节,固定关节,弹簧关节,角色关节和可配置关节。

链条关节(hinge joint):将两个物体以链条的形式绑在一起,当力量大于链条的固定力矩时,两个物体就会产生相互的拉力。

固定关节(fixed joint):将两个物体永远以相对的位置固定在一起,即使发生物理改变,它们之间的相对位置也将不变。

弹簧关节(spring joint):将两个物体以弹簧的形式绑定在一起,挤压它们会得到向外的力,拉伸它们将得到向里的力。

角色关节(character joint):可以模拟角色的骨骼关节。

可配置关节(configurable joint):可以模拟任意关节的效果。

关节是一个游戏组件,在导航菜单栏中选择component——physics然后从中选择一种关节组件,即可完成关节组件的添加。

使用breakforce可设置关节断裂的力,一旦力超过它,关节将会断裂。断裂时,通过onjointbreakforce方法可监听相关事件。

下面给个实例:

using UnityEngine;
using System.Collections;

public class Script_06_10 : MonoBehaviour 
{
//链接关节游戏对象
GameObject connectedObj = null;
//当前链接的关节组件
Component jointComponent = null;

void Start()
{   
     //获得链接关节的游戏对象
     connectedObj = GameObject.Find("Cube1");
}

void OnGUI()
{
    if(GUILayout.Button("添加链条关节"))
    {

        ResetJoint();
        jointComponent = gameObject.AddComponent("HingeJoint");
        HingeJoint hjoint = (HingeJoint)jointComponent;
        connectedObj.rigidbody.useGravity = true;
        hjoint.connectedBody = connectedObj.rigidbody;
    }

    if(GUILayout.Button("添加固定关节"))
    {
        ResetJoint();
        jointComponent =gameObject.AddComponent("FixedJoint");
        FixedJoint fjoint = (FixedJoint)jointComponent;
        connectedObj.rigidbody.useGravity = true;
        fjoint.connectedBody = connectedObj.rigidbody;
    }

    if(GUILayout.Button("添加弹簧关节"))
    {
        ResetJoint();
        jointComponent =gameObject.AddComponent("SpringJoint");
        SpringJoint sjoint = (SpringJoint)jointComponent;
        connectedObj.rigidbody.useGravity = true;
        sjoint.connectedBody = connectedObj.rigidbody;
    }

    if(GUILayout.Button("添加角色关节"))
    {
        ResetJoint();
        jointComponent =gameObject.AddComponent("CharacterJoint");
        CharacterJoint cjoint = (CharacterJoint)jointComponent;
        connectedObj.rigidbody.useGravity = true;
        cjoint.connectedBody = connectedObj.rigidbody;
    }

    if(GUILayout.Button("添加可配置关节"))
    {
        ResetJoint();
        jointComponent =gameObject.AddComponent("ConfigurableJoint");
        ConfigurableJoint cojoint = (ConfigurableJoint)jointComponent;
        connectedObj.rigidbody.useGravity = true;
        cojoint.connectedBody = connectedObj.rigidbody;
    }
}

//重置关节
void ResetJoint(){
    //销毁之前添加的关节组件
    Destroy (jointComponent);
    //重置对象位置
    this.transform.position = new Vector3(821.0f,72.0f,660.0f);
    connectedObj.gameObject.transform.position = new Vector3(805.0f,48.0f,660.0f);
    //不敢应重力
    connectedObj.rigidbody.useGravity = false;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75

}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/127991
推荐阅读
相关标签
  

闽ICP备14008679号