IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 游戏开发 -> unity高空抛物 RaycastHit---API -> 正文阅读

[游戏开发]unity高空抛物 RaycastHit---API

RaycastHit

射线

    //
    // 摘要:
    //     Structure used to get information back from a raycast.
    //     用于从光线投射中获取信息的结构。
    [NativeHeader("PhysicsScriptingClasses.h")]
    [NativeHeader("Runtime/Interfaces/IRaycast.h")]
    [NativeHeader("Runtime/Dynamics/RaycastHit.h")]
    [UsedByNativeCode]
    public struct RaycastHit
    {
        //
        // 摘要:
        //     The Collider that was hit.
        //     命中的 Collider。
        public Collider collider { get; }
        //
        // 摘要:
        //     The impact point in world space where the ray hit the collider.
        //     世界空间中射线命中碰撞体的撞击点。
        public Vector3 point { get; set; }
        //
        // 摘要:
        //     The normal of the surface the ray hit.
        //     射线命中的表面的法线。
        public Vector3 normal { get; set; }
        //
        // 摘要:
        //     The barycentric coordinate of the triangle we hit.
        //     命中的三角形的重心坐标。
        public Vector3 barycentricCoordinate { get; set; }
        //
        // 摘要:
        //     The distance from the ray's origin to the impact point.
        //     从射线原点到撞击点的距离。
        public float distance { get; set; }
        //
        // 摘要:
        //     The index of the triangle that was hit.
        //     命中的三角形的索引。
        public int triangleIndex { get; }
        //
        // 摘要:
        //     The uv texture coordinate at the collision location.
        //     碰撞位置处的 UV 纹理坐标。
        public Vector2 textureCoord { get; }
        //
        // 摘要:
        //     The secondary uv texture coordinate at the impact point.
        //     撞击点处的辅助 UV 纹理坐标。
        public Vector2 textureCoord2 { get; }
        [Obsolete("Use textureCoord2 instead. (UnityUpgradable) -> textureCoord2")]
        public Vector2 textureCoord1 { get; }
        //
        // 摘要:
        //     The Transform of the rigidbody or collider that was hit.
        //     命中的刚体或碰撞体的 Transform。
        public Transform transform { get; }
        //
        // 摘要:
        //     The Rigidbody of the collider that was hit. If the collider is not attached to
        //     a rigidbody then it is null.
        //     命中的碰撞体的 Rigidbody。如果该碰撞体未附加到刚体,则值为 /null/。
        public Rigidbody rigidbody { get; }
        //
        // 摘要:
        //     The uv lightmap coordinate at the impact point.
        //     撞击点处的 UV 光照贴图坐标。
        public Vector2 lightmapCoord { get; }
    }

hit.normal:The normal of the surface the ray hit.
物品掉落到头上弹开:

    RaycastHit hit; string temp;
    /// <summary>
    /// 判断物体砸落到哪个面
    /// </summary>
    void JudgePoint() 
    {
        Vector3 downss = MediaCtrl.OBJS["SM_NvHai_PZ"].transform.position -transform.position;
        //print(downss);
        if (Physics.Raycast(transform.position, downss, out hit, 1000f))
        {
            temp = Vector3.Dot(hit.normal, Vector3.forward) > 0 ? temp = "左" : temp = "右";
        }
    }

左右滑动,躲避高空坠物
在这里插入图片描述

  游戏开发 最新文章
6、英飞凌-AURIX-TC3XX: PWM实验之使用 GT
泛型自动装箱
CubeMax添加Rtthread操作系统 组件STM32F10
python多线程编程:如何优雅地关闭线程
数据类型隐式转换导致的阻塞
WebAPi实现多文件上传,并附带参数
from origin ‘null‘ has been blocked by
UE4 蓝图调用C++函数(附带项目工程)
Unity学习笔记(一)结构体的简单理解与应用
【Memory As a Programming Concept in C a
上一篇文章      下一篇文章      查看所有文章
加:2021-07-28 08:09:12  更:2021-07-28 08:10:26 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年5日历 -2024/5/20 20:25:02-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码