Inflearn Community Q&A
, 은 무슨의미를 갖는것인가요!
Written on
·
266
0
이번강의에서 Destroy 하는부분에서 , < 이걸쓰고 시간을 쓰셨는데 무슨의미일까요! 그리고 시간은 숫자쓰고 f를 붙이면 유니티가 시간으로 이해하는건가요?
unity
Quiz
58% of people got it wrong. Give it a try!
What is the biggest difference between the Start function and the Update function in Unity scripts?
Start runs every frame, and Update runs once initially.
Start is executed once when the script starts, and Update is executed every frame.
Both run every frame, but Start runs before Update.
Both run only once initially, but Update runs before Start.
Answer 2
1
프로그래밍 언어를 조금 공부하셔야 할 것 같습니다. f는 float 타입의 변수에 붙여줍니다.
- Destroy(a) : a를 없애라
- Destroy(a, b) : a를 b초 후에 없애라
입니다.
0





