我想要做的事情:我有一個應該在我點擊創建按鈕時播放的相機動畫,但是不是等我點擊按鈕,相機動畫就馬上播放。 我已禁用「自動播放」,但問題仍然存在。 以下是在動畫組件:相機動畫會自動播放?
這裏是內OnGUI()中的代碼,以檢查當按鈕被按下:
//if the create button is pressed
if (GUI.Button (new Rect (Screen.width * createbuttonPos.x, Screen.height * createbuttonPos.y, Screen.width * buttonSize.x, Screen.height * buttonSize.y), createButton)) {
cam.animation.Play ("CreateCharacterCameraMovement");
base1 = false;
}
主攝像機動畫控制
你還可以發佈你的主相機動畫控制器嗎?我懷疑它具有CreateCharacter動畫作爲默認狀態。 – Formic
我相信第二個圖像是你以後的樣子? –