我一直在爲此工作幾天而沒有成功。我做了一個精靈動畫,拍動它的翅膀。我想讓鳥兒飛到樹上的特定地點。樹是一個圖像,它有一個附有動畫的兒童圖像。動畫工作正常,但我想將它移動到樹上的一個分支。下面列出的班級附在兒童圖像上,但是鳥不會移向分支。正確使用Unity 4.6 MoveTowards
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
public class FlyBird : MonoBehaviour {
public Transform target; // Target is empty game object defined in the inspector
public float MoveSpeed; // Set to 10 in the inspector
// Script is attached to an Image object and the child of the image is a sprite animation
void FixedUpdate()
{
transform.position = Vector2.MoveTowards(transform.position, target.position, MoveSpeed * Time.deltaTime);
Debug.Log(transform.position.x);
}
}
嗯......不知道你是什麼樣的行爲你期待的只是測試這個腳本和它的作品就好了,發生了什麼嗎? – dege 2015-02-23 18:35:34