2018년 7월 1일 일요일

Following Unity Tutorials-2 / 유니티 튜토리얼 따라하기-2

This is the link of Unity Tutorials down below.
아래는 유니티 튜토리얼 링크. (Tutorial 02)

https://youtu.be/Au8oX5pu5u4

- Start() is only called one right when we start playing the game, however, update function is called once a frame.
Start 함수는 게임 플레이 할 때 한 번만 호출된다. update 함수는 한 프레임 당 한 번.


- Write > rb.useGravity = false; and rb.AddForce(0, 200, 500); <
The result is in video down below.
저 명령문들을 쓰면 이런 결과가 나온다.


- The result of writing > rb.AddForce(0, 0, 2000 * Time.deltaTime); <
(I deleted Start() area because I followed the tutorials!)
마찬가지로 저렇게 쓰면 이 영상처럼 된다.
(나는 튜토리얼을 따라했기 때문에 Start 함수 부분을 지워놨다.



- Making another cube. And the result is...
큐브 하나 더 만들어서 보면...


* This is the end of Tutorial 02.

댓글 없음:

댓글 쓰기

[프로그래머스] 프린터 (자바/Java)

문제 설명 일반적인 프린터는 인쇄 요청이 들어온 순서대로 인쇄합니다. 그렇기 때문에 중요한 문서가 나중에 인쇄될 수 있습니다. 이런 문제를 보완하기 위해 중요도가 높은 문서를 먼저 인쇄하는 프린터를 개발했습니다. 이 새롭게 개발한 프린터는 아래와 같은...