码迷,mamicode.com
首页 > 移动开发 > 详细

unity|敌方坦克自由移动,当靠近到一定距离后,可自动攻击

时间:2020-06-09 20:15:43      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:player   scene   input   ash   nav   ini   called   des   unity   

1、场景里新建四个东西
技术图片
新建Empty:Hierarchy面板下右击->Create Empty
2、Empty的位置是在diren的炮口处
技术图片
3、制作子弹的预制体
技术图片
技术图片
4、diren挂上此代码

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class chatAI : MonoBehaviour {

  
    public GameObject Player;
    public float movementSpeed = 4;
    public GameObject bullet;
    public Transform bullstSpawn;
    float time = 0;
    void Start()
    {
        //_Agent = this.GetComponent<UnityEngine.AI.NavMeshAgent>();
    }

    // Update is called once per frame
    void Update()
    {
        float x = Random.Range(0, 20);
        float z = Random.Range(-10, 10);

        while (x > 0)
        {
            this.transform.position += this.transform.forward * x * Time.deltaTime;
            this.transform.eulerAngles += new Vector3(0.0f, 30.0f, 0.0f) * z * Time.deltaTime;
            x -= 10;
        }
        movementSpeed = 1;//坦克速度
        
            
        float dist = Vector3.Distance(Player.transform.position, transform.position);//坦克与小车之间的距离
        if (dist < 20)
        {
        transform.LookAt(Player.transform);//坦克朝向小车
            movementSpeed = 2;//车后的速度变4
                
            time += Time.deltaTime;//计时
            if (time > 2)//当坦克与车的距离小于20大于2s后
            {
                Fire();//开火
                    
                time = 0;//时间重置
            }
               
        }
      
        transform.position += transform.forward * movementSpeed * Time.deltaTime;//改变坦克位置

    }
    void Fire() {//开火
        GameObject bulletgo = Instantiate(bullet,bullstSpawn.position, bullstSpawn.rotation);//实例化子弹
        bulletgo.GetComponent<Rigidbody>().velocity = transform.forward * 20.0f;//子弹运动
        Destroy(bulletgo, 2);//两秒后消灭子弹
    }
}

Player----car(Hierarchy)
Bullst Spawn-----e(Hierarchy)
Bullet----bullet(Project)
技术图片

5、car挂上此代码

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;

public class carmove : MonoBehaviour {

	// Use this for initialization
	void Start () {
        //GetComponent<Rigidbody>().freezeRotation = true;
    }
    // Update is called once per frame
    void Update()
    {
        
        float y = Input.GetAxis("Horizontal") * Time.deltaTime * 150.0f;//旋转角度,水平方向上的变换
        float z = Input.GetAxis("Vertical") * Time.deltaTime * 10.0f;//控制前后

        transform.Rotate(0, y, 0);//绕y轴旋转

        transform.Translate(0, 0, z);//在水平方向上运动位置

    }
    private void OnCollisionEnter(Collision coll) {//坦克的碰撞检测
        if (coll.transform.tag == "diren") {//if (coll.transform.name == "diren")
            
        }
    }
}

效果
技术图片

unity|敌方坦克自由移动,当靠近到一定距离后,可自动攻击

标签:player   scene   input   ash   nav   ini   called   des   unity   

原文地址:https://www.cnblogs.com/adiu/p/13079991.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!