0
我想停下來精神的動畫,當我從d鍵刪除我的手指,動畫製作是當你使用像這樣的如何停止動畫
using UnityEngine;
using System.Collections;
public class Player : MonoBehaviour {
// Use this for initialization
public GameObject main_camera;
void Start() {
main_camera = GameObject.FindGameObjectWithTag("MainCamera");
}
// Update is called once per frame
void Update() {
if (Input.GetKey (KeyCode.D)) {
transform.Translate(Vector3.right * 1*Time.deltaTime);
main_camera.transform.Translate(Vector3.right * 1*Time.deltaTime);
}
if (Input.GetKeyUp (KeyCode.D)) {
//WANT ANIMATION TO STOP
Animator.speed(0);
}
}
}
護理解釋那是什麼代碼做什麼,或者它如何解決了OP的問題?僅有代碼的答案被認爲是低質量的。 –
你不用擔心......今晚我會解釋一下:) –