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 Vector3.Dot(VectorA VectorB) -> 正文阅读

[游戏开发]Unity Vector3.Dot(VectorA VectorB)

Unity Vector3.Dot(VectorA, VectorB)

Vector3.Dot(VectorA, VectorB) 等于 VectorA * VectorB。

而对于两个向量的乘积计算:
VectorA * VectorB = Ax * Bx + Ay * By + Az * Bz

例如:
VectorA(1,2,3) * VectorB(4,5,6) = 1*4+2*5+3*6=32

一般应用于判断飞行器是否收到阻力,这里利用飞机进行举例。

  1. 区分世界坐标轴(Vector3)与自身坐标轴(transform)
  • 世界坐标轴有六个默认的坐标
Vector3.up			#Y轴正方向(0,1,0)
Vector3.down		#Y轴反方向(0,-1,0)
Vector3.forward		#Z轴正方向(0,0,1)
Vector3.back		#Z轴反方向(0,0,-1)
Vector3.right		#X轴正方向(1,0,0)
Vector3.left		#X轴反方向(-1,0,0)

在这里插入图片描述

  • 自身坐标轴只有三个默认的坐标
this.transform.up			#自身Y轴方向
this.transform.forward		#自身Z轴方向
this.transform.right		#自身X轴方向

自身坐标轴的正方向代表三个默认的坐标。
在这里插入图片描述

  1. 通过判断飞机自身坐标轴Z轴与世界坐标轴Y轴来设置飞机阻力
Vector3.Dot(this.transform.forward, Vector3.up);

在这里插入图片描述

  1. 飞机在飞行过程中,transform.forward会一直改变,利用这一个特点,修改之前代码。
Vector3.Dot(this.transform.forward, Vector3.up)
#飞机径直向前值为0
#飞机机头向上由0到1变化
#飞机机头向下由0到-1变化
float hinderForce = 1 - Vector3.Dot(this.transform.forward, Vector3.up);
#飞机径直向前hinderForce为1
#飞机机头向上hinderForce为[0,1]的数
#飞机机头向下hinderForce为[-1,0]的数
rb.velocity = this.transform.forward * Speed * hinderForce
#当飞机机头向下既可加速冲刺,而机头向上向前的速度将减缓

在这里插入图片描述
整个飞机的控制脚本(Script):
注:需要在飞机添加刚体组件

	[SerializeField]
    private float maxFlySpeed = 150;//飞行速度
    [SerializeField]
    private float minAllowFlySpeed = 40;//最小允许飞行速度
    [SerializeField]
    private float addSpeed = 20;//提速速度
    [SerializeField]
    private float currentSpeed;//当前速度
    private float perAddSpeed;//单位提升速度

    [SerializeField]
    private float gravitySpeed = 30;//重力下降速度

    private Rigidbody rb;

    private void Start()
    {
        rb = this.GetComponent<Rigidbody>();
        perAddSpeed = addSpeed / maxFlySpeed;
    }

    void Update()
    {
        float hinderForce = 1 - Vector3.Dot(this.transform.forward, Vector3.up);
        
        if (Input.GetKey(KeyCode.J))
        {
            AddSpeed();

            if (hinderForce < 0.2f)
            {
                rb.useGravity = true;
                rb.velocity = Vector3.down * gravitySpeed;//加速自由落体
            }
            else
            {
                rb.useGravity = false;
                rb.velocity = this.transform.forward * currentSpeed * hinderForce;
            }
        }
        else
        {
            rb.useGravity = true;
            subtractSpeed();
            rb.velocity = this.transform.forward * currentSpeed * hinderForce + Vector3.down * gravitySpeed;//平滑飞行
        }

        if (currentSpeed > minAllowFlySpeed)
        {
            if (Input.GetKey(KeyCode.A))
            {
                this.transform.Rotate(new Vector3(0, 0, Time.deltaTime * 100));
            }
            else if (Input.GetKey(KeyCode.D))
            {
                this.transform.Rotate(new Vector3(0, 0, Time.deltaTime * -100));
            }

            if (Input.GetKey(KeyCode.W))
            {
                this.transform.Rotate(new Vector3(Time.deltaTime * -30, 0, 0));
            }
            else if (Input.GetKey(KeyCode.S))
            {
                this.transform.Rotate(new Vector3(Time.deltaTime * 30, 0, 0));
            }
        }
    }

    //速度提升
    private void AddSpeed()
    {
        if (currentSpeed >= maxFlySpeed)
        {
            currentSpeed = maxFlySpeed;
        }
        else
        {
            currentSpeed += perAddSpeed;
        }
    }

    //减小速度
    private void subtractSpeed()
    {
        if (currentSpeed <= 0)
        {
            currentSpeed = 0;
        }
        else
        {
            currentSpeed -= perAddSpeed * 1.3f;
        }
    }

因为作者精力有限,文章中难免出现一些错漏,敬请广大专家和网友批评、指正。

  游戏开发 最新文章
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-11-23 12:41:48  更:2021-11-23 12:43:28 
 
开发: 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年11日历 -2024/11/27 23:29:04-

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