[SKKU DT] 18일차 -유니티 기본 테스트 -버튼을 눌러서 +, - 1씩 적용하는 유니티 씬 만들기
2023. 11. 22. 18:35ㆍSKKU DT
728x90
반응형
버튼을 눌러서 +, - 1씩 적용하는 유니티 씬 만들기
using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
public class TextScript : MonoBehaviour
{
//현재 점수
public TextMeshProUGUI textNumber;
public int currentNumber = 0;
// Start is called before the first frame update
void Start()
{
textNumber.text = "0";
}
public void Plus()
{
currentNumber++;
textNumber.text = currentNumber.ToString();
}
public void Minus()
{
currentNumber--;
textNumber.text = currentNumber.ToString();
}
}
728x90
반응형
'SKKU DT' 카테고리의 다른 글
[SKKU DT] 20일차 -유니티 프로젝트 컨셉 정하기 (0) | 2023.11.24 |
---|---|
[SKKU DT] 19일차 -유니티 셰이더 그래프 (2) | 2023.11.23 |
[SKKU DT] 18일차 -블렌더 캐릭터 모델링, 리깅(Rigging) (1) | 2023.11.22 |
[SKKU DT] 17일차 -블렌더 눈 파티클, 물 시뮬레이션 (0) | 2023.11.21 |
[SKKU DT] 17일차 -블렌더 애니메이션 (0) | 2023.11.21 |