• Unity刚体穿透问题测试以及解决


    测试环境很简单,一面墙,红色方块不停向前

    然后,由于刚体是FixedUpdate执行的,把FixedUpdate执行间隔调慢一些方便Debug:

    OK,下面还原一次经典的穿透问题:

    测试脚本:

    void Update()
    {
        transform.Translate(0, 0, 10 * Time.deltaTime);
    }

    OK,然后我测试了几种方法,最后发现直接改速率最为有效,AddForceAtPosition虽然也可以但是不常用:(注释掉的方法都测试失败,碰撞检测"连续/非连续"都测过)

    void FixedUpdate()
    {
        //transform.Translate(0, 0, 10 * Time.deltaTime);
        //transform.Translate(0, 0, 10 * Time.fixedDeltaTime);
        //GetComponent<Rigidbody>().position += transform.forward;
        //GetComponent<Rigidbody>().MovePosition(transform.position + transform.forward * 10 * Time.deltaTime);
        //GetComponent<Rigidbody>().MovePosition(transform.position + transform.forward);
        GetComponent<Rigidbody>().AddForceAtPosition(new Vector3(0, 0, 30000), transform.position + transform.forward, ForceMode.VelocityChange);
        GetComponent<Rigidbody>().velocity = transform.forward * 100000f;
    }

    但这只是防止FixedUpdate更新频率低的解决方法,我极限测试了一下,又穿透了:

    void FixedUpdate()
    {
        GetComponent<Rigidbody>().velocity = transform.forward * 100000f;
    }

    然后我尝试把碰撞检测改为连续:

    终于,没有出现穿透:

    再补上一个夹角测试:(卡是因为我把FixedUpdate频率调低了)

    测试脚本:

    void Update()
    {
        if(Input.GetKey( KeyCode.A))
        {
            GetComponent<Rigidbody>().velocity = transform.right * -20f;
        }
    
        if (Input.GetKey(KeyCode.D))
        {
            GetComponent<Rigidbody>().velocity = transform.right * 20f;
        }
    
        if (Input.GetKey(KeyCode.W))
        {
            GetComponent<Rigidbody>().velocity = transform.forward * 20f;
        }
    
        if (Input.GetKey(KeyCode.S))
        {
            GetComponent<Rigidbody>().velocity = transform.forward * -20f;
        }
    }
    View Code

    另外测了一下Animator的穿透情况,打开根运动造成的位移不会穿透。如果是动画控制的位移会穿透,但除非你强制移除Animator,动画位移不会有什么影响

    并且和UpdateMode的具体模式无关

  • 相关阅读:
    智慧城市顶层设计策略方案(PPT)
    ant build.xml 解释!
    Excel poi API基础教程!
    操纵Excel文件的 ExcelUtil 类 !
    在selenium测试中使用XPATH功能函数starts-with、contains、descendant、ancestor、text()定位网页元素
    [ Selenium2 从零开始 by Bruce from http://seleniumcn.cn ] 1-8 视频集锦
    selenium 概念及练习 !
    selenium Object Page 设计模式理解及实现!
    使用TestNG 和 CSV文件进行数据驱动
    如何让评审人爱上我
  • 原文地址:https://www.cnblogs.com/hont/p/5197554.html
Copyright © 2020-2023  润新知