這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)Unity怎么實(shí)現(xiàn)已知落點(diǎn)和速度自動(dòng)計(jì)算發(fā)射角度,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
創(chuàng)新互聯(lián)主營(yíng)秦淮網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,app軟件定制開發(fā),秦淮h5小程序開發(fā)搭建,秦淮網(wǎng)站營(yíng)銷推廣歡迎秦淮等地區(qū)企業(yè)咨詢在發(fā)射物已知落點(diǎn)和速度的情況下如果剛體應(yīng)用重力,不容易算出發(fā)射角度,以下為計(jì)算過(guò)程
///
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
///
/// 旋轉(zhuǎn)的物體(自身)
/// 目標(biāo)點(diǎn)(鼠標(biāo)指向) 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); }
///
/// 目標(biāo)點(diǎn)坐標(biāo) ///
上述就是小編為大家分享的Unity怎么實(shí)現(xiàn)已知落點(diǎn)和速度自動(dòng)計(jì)算發(fā)射角度了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。