Notice
Recent Posts
Recent Comments
Link
250x250
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Tags more
Archives
Today
Total
관리 메뉴

혼자서 앱 만드는 개발자 함께하는 AI 세상

[개발일지] 오늘은 르탄이 게임시간 설정 본문

Unity 게임스터디

[개발일지] 오늘은 르탄이 게임시간 설정

혼앱사 2022. 9. 14. 23:04
반응형

캠퍼스나 패널은 은 신 상단에 위치하고 이것들은 카메라가 따라다니지 않게 항상 화면에 표시하게 만들어야함


막 설정을 변경한다 ㅎㅎㅎㅎ


아래처럼 엄청 큰화면에 표시됨 game 화 scene 화면에 별도로 표시되는데 맞는것임?




public float limit = 0;
public GameObject panel;
public Text timeText;
private void Awake()
{
I = this;
}

// Start is called before the first frame update
void Start()
{
InvokeRepeating("makeRain", 0, 0.5f);
}

// Update is called once per frame
void Update()
{
limit -= Time.deltaTime;
if (limit < 0)
{
limit = 0.0f;
panel.SetActive(true);
Time.timeScale = 0.0f;
}
timeText.text = limit.ToString("N2");


설정값들은 소스에 반영 할수있음




신명 변경

오늘도 이렇게 내맘대로 코딩해봄 ㅎㅎㅎㅎㅎㅎ

728x90
반응형

'Unity 게임스터디' 카테고리의 다른 글

[유니티개발일지]4주차 회고 카드게임  (0) 2022.09.26
Comments