-
[Unity] 효과음 추가하기Unity/게임 만들어보기 기록장 2022. 10. 25. 17:53728x90
새가 나는 소리를 위하여 효과음을 추가해보자
효과음을 무료로 이용할 수 있는 사이트에서 새의 소리를 가져와준다.
다운을 받았다면,
Bird파일에 있는 Audio Source에 넣어준다.
그다음 점프마다 소리가 나게 코드작성
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; public class BirdJump : MonoBehaviour { Rigidbody2D rb; public float jumpPower; // Start is called before the first frame update void Start() { rb = GetComponent<Rigidbody2D>(); } // Update is called once per frame void Update() { if (Input.GetMouseButtonDown(0)) { GetComponent<AudioSource>().Play();// 소리 rb.velocity = Vector2.up * jumpPower; //(0,3) } } //충돌시 게임오버 private void OnCollisionEnter2D(Collision2D other) { if(Score.score > Score.bestScore){ Score.bestScore = Score.score; } SceneManager.LoadScene("GameOverScene"); } }
728x90'Unity > 게임 만들어보기 기록장' 카테고리의 다른 글
[Unity] GooglePlay Console 가입하기 (0) 2022.10.26 [Unity] ABB파일 빌드하기 (0) 2022.10.26 [Unity] 너무 높게나는거 방지하기 (0) 2022.10.24 [Unity] Score 초기화 및 Best Score (0) 2022.10.24 [Unity]GameOver Scene만들기 (0) 2022.10.23