物理模拟重力 斜抛运动计算 抛物线计算

物理模拟重力 斜抛运动计算 抛物线计算

  • 一、介绍
  • 二、原理
  • 三、实现如下
    • PhysicsUtil.cs 工具类
    • Missile.cs
  • 四、资源分享

一、介绍

在这里插入图片描述
模拟Unity原始重力系统进行重写,可是实现发射到指定目标位置并能继续当前力进行自身的弹力与摩擦继续运动

二、原理

将Unity原始不受控制的物理系统使用一个模拟重力的方式进行斜抛等操作,在其落地瞬间将模拟的重力还原给Unity的原始重力,从而达到可任意抛物线移动的物理系统

三、实现如下

PhysicsUtil.cs 工具类

using UnityEngine;/// <summary> 物理计算工具
/// <para>ZhangYu 2018-05-10</para>
/// </summary>
public static class PhysicsUtil
{/**findInitialVelocity* Finds the initial velocity of a projectile given the initial positions and some offsets* @param Vector3 startPosition - the starting position of the projectile* @param Vector3 finalPosition - the position that we want to hit* @param float maxHeightOffset (default=0.6f) - the amount we want to add to the height for short range shots. We need enough clearance so the* ball will be able to get over the rim before dropping into the target position* @param float rangeOffset (default=0.11f) - the amount to add to the range to increase the chances that the ball will go through the rim* @return Vector3 - the initial velocity of the ball to make it hit the target under the current gravity force.* *      Vector3 tt = findInitialVelocity (gameObject.transform.position, target.transform.position);Rigidbody rigidbody = gameObject.GetComponent<Rigidbody> ();Debug.Log (tt);rigidbody.AddForce(tt*rigidbody.mass,ForceMode.Impulse);*/public static Vector3 GetParabolaInitVelocity(Vector3 from, Vector3 to, float gravity = 9.8f, float heightOff = 0.0f, float rangeOff = 0.11f){// get our return value ready. Default to (0f, 0f, 0f)Vector3 newVel = new Vector3();// Find the direction vector without the y-component/// /找到未经y分量的方向矢量//Vector3 direction = new Vector3(to.x, 0f, to.z) - new Vector3(from.x, 0f, from.z);// Find the distance between the two points (without the y-component)//发现这两个点之间的距离(不y分量)//float range = direction.magnitude;// Add a little bit to the range so that the ball is aiming at hitting the back of the rim.// Back of the rim shots have a better chance of going in.// This accounts for any rounding errors that might make a shot miss (when we don't want it to).range += rangeOff;// Find unit direction of motion without the y componentVector3 unitDirection = direction.normalized;// Find the max height// Start at a reasonable height above the hoop, so short range shots will have enough clearance to go in the basket// without hitting the front of the rim on the way up or down.float maxYPos = to.y + heightOff;// check if the range is far enough away where the shot may have flattened out enough to hit the front of the rim// if it has, switch the height to match a 45 degree launch angle//if (range / 2f > maxYPos)//  maxYPos = range / 2f;if (maxYPos < from.y)maxYPos = from.y;// find the initial velocity in y direction/// /发现在y方向上的初始速度//float ft;ft = -2.0f * gravity * (maxYPos - from.y);if (ft < 0) ft = 0f;newVel.y = Mathf.Sqrt(ft);// find the total time by adding up the parts of the trajectory// time to reach the max//发现的总时间加起来的轨迹的各部分////时间达到最大//ft = -2.0f * (maxYPos - from.y) / gravity;if (ft < 0)ft = 0f;float timeToMax = Mathf.Sqrt(ft);// time to return to y-target//时间返回到y轴的目标//ft = -2.0f * (maxYPos - to.y) / gravity;if (ft < 0)ft = 0f;float timeToTargetY = Mathf.Sqrt(ft);// add them up to find the total flight time//把它们加起来找到的总飞行时间//float totalFlightTime;totalFlightTime = timeToMax + timeToTargetY;// find the magnitude of the initial velocity in the xz direction/// /查找的初始速度的大小在xz方向//float horizontalVelocityMagnitude = range / totalFlightTime;// use the unit direction to find the x and z components of initial velocity//使用该单元的方向寻找初始速度的x和z分量//newVel.x = horizontalVelocityMagnitude * unitDirection.x;newVel.z = horizontalVelocityMagnitude * unitDirection.z;return newVel;}/// <summary> 计算抛物线物体在下一帧的位置 </summary>/// <param name="position">初始位置</param>/// <param name="velocity">移动速度</param>/// <param name="gravity">重力加速度</param>/// <param name="time">飞行时间</param>/// <returns></returns>public static Vector3 GetParabolaNextPosition(Vector3 position, Vector3 velocity, float gravity, float time){velocity.y += gravity * time;return position + velocity * time;}}

Missile.cs

using UnityEngine;/// <summary>
/// 抛物线导弹
/// <para>计算弹道和转向</para>
/// <para>ZhangYu 2019-02-27</para>
/// </summary>
public class Missile : MonoBehaviour
{public Transform target;        // 目标public float hight = 16f;       // 抛物线高度public float gravity = -9.8f;   // 重力加速度private Vector3 position;       // 我的位置private Vector3 dest;           // 目标位置private Vector3 velocity;       // 运动速度private float time = 0;         // 运动时间private void Start(){dest = target.position;position = transform.position;velocity = PhysicsUtil.GetParabolaInitVelocity(position, dest, gravity, hight, 0);transform.LookAt(PhysicsUtil.GetParabolaNextPosition(position, velocity, gravity, Time.deltaTime));}private void Update(){// 计算位移float deltaTime = Time.deltaTime;position = PhysicsUtil.GetParabolaNextPosition(position, velocity, gravity, deltaTime);transform.position = position;time += deltaTime;velocity.y += gravity * deltaTime;// 计算转向transform.LookAt(PhysicsUtil.GetParabolaNextPosition(position, velocity, gravity, deltaTime));// 简单模拟一下碰撞检测if (position.y <= dest.y){if (Vector3.Distance(transform.position,target.position)>= 2) return;GetComponent<Rigidbody>().useGravity = true;GetComponent<Rigidbody>().velocity = velocity;enabled = false;};}}

四、资源分享

CSDN下载链接

在我的资源中搜索 PhysicsMissile

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/576698.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Linux常用命令(一):Conda、RPM、文件权限、apt-get(更新中...

文章目录 一、Conda二、RPM三、文件权限四、apt-get 一、Conda Conda是一个开源的软件包管理系统和环境管理系统&#xff0c;用于安装和管理软件包及其依赖项。它主要用于Python编程语言&#xff0c;但也可以用于其他语言的项目。Conda可以帮助用户创建不同版本的Python环境&a…

​一个人成长最快的方式

一个人成长最快的方式就是&#xff1a;保持阅读&#xff0c;向行业的专家学习&#xff0c;在实践中不断的复盘总结&#xff0c;循环这三点&#xff0c;没有学不好的东西。基于此&#xff0c;推荐一些在产品、设计领域的专家&#xff0c;关注他们&#xff0c;学习他们&#xff0…

springcloud 服务网关Zuul实战(二)路由访问映射规则

上篇文中已经讲完基本的路由配置&#xff0c;但是我们如何对访问的微服务做映射 访问的地址&#xff1a;http://myzuul.com:9527/microservicecloud-dept/dept/get/2 从访问地址可以分析出我们真实的微服务名字&#xff0c;我们为了安全起见将真实的微服务名字隐藏&#xff0…

B端 — 卡片式列表设计

作者&#xff1a;Nick&#xff08;转载已取得作者授权&#xff09;卡片式列表是一种很好的集合信息的方式&#xff0c;它既有好处也有弊端&#xff0c;因此需要根据场景和内容确定展现形式。本文结合了案例与大家分享一下卡片式列表设计的一些思考。一、定义1. 什么是卡片物理世…

隐藏文件或文件夹属性无法修改解决方案

对于无法显示隐藏文件或文件夹的问题&#xff0c;网上的的 控制面板--》文件夹选项 解决方案就不再累述了。接下来是这个问题&#xff1a;可以显示隐藏文件&#xff0c;但是想将隐藏文件或文件夹的隐藏属性去掉&#xff0c;却无法操作。因为右键查看文件属性时&#xff0c;可以…

springcloud config配置中心概述

Spring Cloud Config简介 Spring Cloud Config 是 Spring Cloud 家族中最早的配置中心&#xff0c;虽然后来又发布了 Consul 可以代替配置中心功能&#xff0c;但是 Config 依然适用于 Spring Cloud 项目&#xff0c;通过简单的配置即可实现功能。 配置文件是我们再熟悉不过的…

【计算机四级(网络工程师)笔记】操作系统运行机制

目录 一、中央处理器&#xff08;CPU&#xff09; 1.1CPU的状态 1.2指令分类 二、寄存器 2.1寄存器分类 2.2程序状态字&#xff08;PSW&#xff09; 三、系统调用 3.1系统调用与一般过程调用的区别 3.2系统调用的分类 四、中断与异常 4.1中断 4.2异常 &#x1f308;嗨&#xff…

JAVA中equals()方法的重要性

对于对象比较使用equals()方法的重要性&#xff0c;这里以String类为例进行了比较。 /*** 对于对象比较使用equals()方法的重要性&#xff0c;这里以String类为例进行了比较。* author HAN**/ public class TestEqual {public TestEqual(){testMethod();}void testMethod(){Str…

springcloud config服务端配置(一)

用自己GitHub账号在GitHub上新建一个microservicecloud-config的新的repository 又上一步我们得到了ssh的git地址 gitgithub.com:470812087/microservicecloud-config.git 本地目录新建&#xff08;F:\JAVA\ideaIU\microservicecloud-config-repository&#xff09;仓库并…

要求做一个从网页上导入excel

要求做一个从网页上导入excel&#xff0c;&#xff0c;开始着手去实现它。 思路很简单&#xff1a; 1、做一个jsp页面&#xff0c;页面包括浏览文件&#xff0c;提交文件 2、将excel文件上传到服务器 3、 服务器对该excel文件进行读出 4、 将excel文件内容显示到页面上 环境搭…

解决git@github.com: Permission denied (publickey). Could not read from remote repository

原因分析 Permission denied (publickey) 没有权限的publickey &#xff0c;出现这错误一般是以下两种原因 客户端与服务端未生成 ssh key客户端与服务端的ssh key不匹配 找到问题的原因了&#xff0c;解决办法也就有了&#xff0c;重新生成一次ssh key &#xff0c;服务端也…

经典Sql大全--转

一、基础 1、说明&#xff1a;创建数据库CREATE DATABASE database-name2、说明&#xff1a;删除数据库drop database dbname3、说明&#xff1a;备份sql server--- 创建 备份数据的 deviceUSE masterEXEC sp_addumpdevice disk, testBack, c:\mssql7backup\MyNwind_1.dat--- 开…

springcloud config服务端配置(二)

接着上一篇把把本地仓库yml文件推送到github之后&#xff0c;下面我们就是实战了&#xff0c;各个微服务如何读取到远程仓库的的yml文件配置 一&#xff0c;新建一个Module模块microservicecloud-config-3344 它即为Cloud配置中心模块 二&#xff0c;pom文件添加依赖 <?xm…

电脑很卡~~~~为什么???

问题&#xff1a;最近电脑不知道为什么&#xff0c;只要连接USB下载或是用QQ视频聊天&#xff0c;电脑就很卡&#xff0c;速度超级慢&#xff0c;连千千静听播放的速度都很慢&#xff0c;唱的歌都是断断续续的&#xff01; 用杀毒软件又查不到毒&#xff0c;漏洞全补好了&#…

循环队列CircleQueue的使用

循环队列CircleQueue 的使用 循环队列是实际编写应用中比较重要的一种数据结构&#xff0c;下面介绍在实际项目中用到的循环队列CircleQueue。它是用C编写的&#xff0c;具体源代码见 https://github.com/duankai/CircleQueue template<typenameAnyData> struct DATA_NOD…

C4996    'fopen': This function or variable may be unsafe

C4996 fopen: This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 在工程文件处右击&#xff0c;选择属性->配置属性->C/C->预处理器 加入一个_CR…

atmega8 例程:USART串口通信

/***************************************************************** * 函数库说明&#xff1a;ATMEGA8 串口通信 * 版本&#xff1a; v1.0 * 修改&#xff1a; 庞辉 芜湖联大飞思卡尔工作室 …

排序二叉树 SortBinaryTree

排序二叉树 SortBinaryTree 排序二叉树是比较基本但是重要的算法,它在许多实际编码中都不可缺少&#xff0c;还有不少算法和数据结构都基于此。比如&#xff0c;二叉查找树&#xff0c;平衡二叉树&#xff0c;红黑树等等。 SortBinaryTree的源代码见: https://github.com/…

使用postman操作ElasticSearch

下载安装好postman之后 添加索引blog1&#xff08;因为ElasticSearch是restful请求所以我们用postman发送http请求给ElasticSearch&#xff09; { "mappings":{ "article":{ "properties":{ "i…

图像处理基本算法-形态学

形态学一般是使用二值图像&#xff0c;进行边界提取&#xff0c;骨架提取&#xff0c;孔洞填充&#xff0c;角点提取&#xff0c;图像重建。基本的算法:膨胀腐蚀&#xff0c;开操作&#xff0c;闭操作&#xff0c;击中击不中变换 几种算法进行组合&#xff0c;就可以实现一些非…