public void Move() { int stt = sun; scoreText.text = stt.ToString(); if (Input.GetKey(KeyCode.W)) { direction = 0; this.gameObject.GetComponent<SpriteRenderer>().sprite = prota[2]; this.gameObject.transform.Translate(Vector3.up * speed * Time.deltaTime); } else if (Input.GetKey(KeyCode.S)) { this.gameObject.GetComponent<SpriteRenderer>().sprite = prota[0]; direction = 2; this.gameObject.transform.Translate(Vector3.down * speed * Time.deltaTime); } else if (Input.GetKey(KeyCode.D)) { direction = 3; this.gameObject.GetComponent<SpriteRenderer>().sprite = prota[1]; this.gameObject.transform.Translate(Vector3.right * speed * Time.deltaTime); } else if (Input.GetKey(KeyCode.A)) { direction = 1; this.gameObject.GetComponent<SpriteRenderer>().sprite = prota[3]; this.gameObject.transform.Translate(Vector3.left * speed * Time.deltaTime); } // 攻击 if (Input.GetMouseButtonDown(0)) { // 处理鼠标左键点击事件 GameObject ins = Instantiate(bulletPrefab); Vector2 clickPosition = Camera.main.ScreenToWorldPoint(Input.mousePosition); ins.GetComponent<Blogs>().clickPosition = clickPosition; if (direction == 0) { ins.transform.position = new Vector3(this.gameObject.transform.position.x, this.gameObject.transform.position.y + 0.15f); } else if (direction == 2) { ins.transform.position = new Vector3(this.gameObject.transform.position.x, this.gameObject.transform.position.y - 0.15f); } else if (direction == 3) { ins.transform.position = new Vector3(this.gameObject.transform.position.x + 0.15f, this.gameObject.transform.position.y); } else if (direction == 1) { ins.transform.position = new Vector3(this.gameObject.transform.position.x - 0.15f, this.gameObject.transform.position.y); } } }增加移动音效
时间: 2023-06-20 18:06:55 浏览: 160
stt.js:语音到浏览器的文本库:microphone:
你可以试试在移动的每个方向上都加上一个音效,比如在按下 W 键时播放一个向上移动的音效,在按下 A 键时播放一个向左移动的音效等等。你可以使用 AudioClip 类来加载音频文件,使用 AudioSource 类来播放音效。具体实现可以参考以下代码:
public AudioClip moveSound;
public AudioSource audioSource;
public void Move() {
int stt = sun;
scoreText.text = stt.ToString();
if (Input.GetKey(KeyCode.W)) {
direction = 0;
this.gameObject.GetComponent<SpriteRenderer>().sprite = prota[2];
this.gameObject.transform.Translate(Vector3.up * speed * Time.deltaTime);
if (!audioSource.isPlaying) {
audioSource.clip = moveSound;
audioSource.Play();
}
} else if (Input.GetKey(KeyCode.S)) {
this.gameObject.GetComponent<SpriteRenderer>().sprite = prota[0];
direction = 2;
this.gameObject.transform.Translate(Vector3.down * speed * Time.deltaTime);
if (!audioSource.isPlaying) {
audioSource.clip = moveSound;
audioSource.Play();
}
} else if (Input.GetKey(KeyCode.D)) {
direction = 3;
this.gameObject.GetComponent<SpriteRenderer>().sprite = prota[1];
this.gameObject.transform.Translate(Vector3.right * speed * Time.deltaTime);
if (!audioSource.isPlaying) {
audioSource.clip = moveSound;
audioSource.Play();
}
} else if (Input.GetKey(KeyCode.A)) {
direction = 1;
this.gameObject.GetComponent<SpriteRenderer>().sprite = prota[3];
this.gameObject.transform.Translate(Vector3.left * speed * Time.deltaTime);
if (!audioSource.isPlaying) {
audioSource.clip = moveSound;
audioSource.Play();
}
}
// 攻击
if (Input.GetMouseButtonDown(0)) {
// 处理鼠标左键点击事件
GameObject ins = Instantiate(bulletPrefab);
Vector2 clickPosition = Camera.main.ScreenToWorldPoint(Input.mousePosition);
ins.GetComponent<Blogs>().clickPosition = clickPosition;
if (direction == 0) {
ins.transform.position = new Vector3(this.gameObject.transform.position.x, this.gameObject.transform.position.y + 0.15f);
} else if (direction == 2) {
ins.transform.position = new Vector3(this.gameObject.transform.position.x, this.gameObject.transform.position.y - 0.15f);
} else if (direction == 3) {
ins.transform.position = new Vector3(this.gameObject.transform.position.x + 0.15f, this.gameObject.transform.position.y);
} else if (direction == 1) {
ins.transform.position = new Vector3(this.gameObject.transform.position.x - 0.15f, this.gameObject.transform.position.y);
}
}
}
阅读全文