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

塔防TDTK 敌人移动到目标转向

时间:2015-08-17 14:06:54      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:unity3d   教程   

 using UnityEngine;
using System.Collections;


public class enimiy : MonoBehaviour {
public Transform target;
public float moveSpeed =1;
private Transform thisT;



void Start () {

}

//游戏唤醒后赋值

void Awake(){
thisT = this.transform;
}


void Update () {

                  MoveToPoint (target.position);

}

private float rotateSpd =5f;

//Slerp慢慢的转向目标

void MoveToPoint(Vector3 point){
Quaternion wanteRot = Quaternion.LookRotation (point - thisT.position);
thisT.rotation = Quaternion.Slerp (thisT.rotation, wanteRot, rotateSpd * Time.deltaTime);

                  // normalized是把vector3变成一个大小为1的值

Vector3 dir = (point - thisT.position).normalized;
thisT.Translate (dir * moveSpeed * Time.deltaTime, Space.World);
}
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

塔防TDTK 敌人移动到目标转向

标签:unity3d   教程   

原文地址:http://blog.csdn.net/haifeng619/article/details/47723045

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