유니티 플래피버드 게임 만들기 #2
1. 점수 표시하기 UI->Canvas 2. 점수 표시할 텍스트 넣기 UI->Text Anchors는 Ctrl키, Shift키를 누르면 다양한 모드가 나온다. 3. 점수 스크립트 생성하기 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class Score : MonoBehaviour { public static int nScore = 0; void Start() { nScore = 0; //새로 시작할때 점수를 0점으로 초기화 } void Update() { GetComponent().text = nScore.ToString(); } } 4. 장애물 통과하면 ..
프로그래밍/유니티
2022. 5. 17. 10:10