溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Unity實(shí)現(xiàn)已知落點(diǎn)和速度自動(dòng)計(jì)算發(fā)射角度

發(fā)布時(shí)間:2020-10-26 08:05:40 來源:腳本之家 閱讀:199 作者: 欄目:編程語言

本文實(shí)例為大家分享了Unity已知落點(diǎn)和速度自動(dòng)計(jì)算發(fā)射角度的具體代碼,供大家參考,具體內(nèi)容如下

在發(fā)射物已知落點(diǎn)和速度的情況下如果剛體應(yīng)用重力,不容易算出發(fā)射角度,以下為計(jì)算過程

/// <summary>
/// 掛載到發(fā)射器上即可
/// </summary>
public class Rotate : MonoBehaviour
{
 public GameObject prefab; //發(fā)射物
 public float speed;   //發(fā)射物速度
 public bool 拋射 = false; //拋射:仰角 > 45°,否:仰角 < 45°
 Ray RayMouse;
 Vector3 direction;
 Quaternion rotation;
 
 void Update()
 {
  if (Input.GetMouseButtonDown(0))
  {
   GameObject go = Instantiate(prefab, transform.position, transform.rotation);
   go.AddComponent<Rigidbody>().velocity = go.transform.forward * speed;
  }

  RaycastHit hit;
  RayMouse = Camera.main.ScreenPointToRay(Input.mousePosition);
  if (Physics.Raycast(RayMouse.origin, RayMouse.direction, out hit, Mathf.Infinity))
  {
   RotateToMouseDirection(gameObject, hit.point);
  }
 }

 /// <summary>
 /// 執(zhí)行整體旋轉(zhuǎn)
 /// </summary>
 /// <param name="obj">旋轉(zhuǎn)的物體(自身)</param>
 /// <param name="destination">目標(biāo)點(diǎn)(鼠標(biāo)指向)</param>
 void RotateToMouseDirection(GameObject obj, Vector3 destination)
 {
  direction = destination - obj.transform.position;
  rotation = Quaternion.LookRotation(direction);

  Vector3 finalAngle = rotation.eulerAngles;
  float targetAng = Angle(destination);
  finalAngle = new Vector3(-targetAng, finalAngle.y, finalAngle.z);//注意正負(fù)

  obj.transform.localRotation = Quaternion.Euler(finalAngle);
 }

 /// <summary>
 /// 自動(dòng)計(jì)算x歐拉角,即仰角
 /// </summary>
 /// <param name="target">目標(biāo)點(diǎn)坐標(biāo)</param>
 /// <returns></returns>
 float Angle(Vector3 target)
 {
  float angleX;
  float distX = Vector2.Distance(new Vector2(target.x, target.z), new Vector2(transform.position.x, transform.position.z));
  float distY = target.y - transform.position.y;
  float posBase = (Physics.gravity.y * Mathf.Pow(distX, 2.0f)) / (2.0f * Mathf.Pow(speed, 2.0f));
  float posX = distX / posBase;
  float posY = (Mathf.Pow(posX, 2.0f) / 4.0f) - ((posBase - distY) / posBase);
  if (posY >= 0.0f)
  {
   if (拋射) //字段
    angleX = Mathf.Rad2Deg * Mathf.Atan(-posX / 2.0f + Mathf.Pow(posY, 0.5f));
   else
    angleX = Mathf.Rad2Deg * Mathf.Atan(-posX / 2.0f - Mathf.Pow(posY, 0.5f));
  }
  else
  {
   angleX = 45.0f;
  }
  return angleX;
 }
}

實(shí)際效果

Unity實(shí)現(xiàn)已知落點(diǎn)和速度自動(dòng)計(jì)算發(fā)射角度

拋射效果

Unity實(shí)現(xiàn)已知落點(diǎn)和速度自動(dòng)計(jì)算發(fā)射角度

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI