목록전체 글 (382)
Priv's Blog
출처 Lesson 1 - Install Unity Software - Unity Learn Overview: If you do not already have Unity installed on your computer, the first thing you need to do before you get started on the course is install it. In order to do so, if you don’t have one already, you will need to create a Unity ID. When you insta learn.unity.com 1. Unity Hub 다운로드 및 설치 여러분의 컴퓨터에서 가장 효과적으로 유니티를 다운로드, 설치, 버전 관리를 할 수 있도록 'Un..
출처 Course Introduction - Unity Learn In this lesson, you will be introduced to the course, its goals, what it involves, and how you can get the most out of it learn.unity.com 1. 환영합니다! (영상: 링크 참조) Course Introduction - Unity Learn In this lesson, you will be introduced to the course, its goals, what it involves, and how you can get the most out of it learn.unity.com 2. 보고, 실행하세요 (영상: 링크 참조) Cour..
출처 Programming Basics - Unity Learn Welcome to Programming Basics! This first mission in the Junior Programmer pathway will provide you with the core foundation needed to create a wide range of digital experiences in Unity. You’ll learn about fundamental programming concepts such as variab learn.unity.com 1. Programming Basics Programming Basics에 오신 것을 환영합니다! Junior Programmer pathway의 첫 번째 과제는 ..
1. 게임은 트릭 쿠키런을 비롯한 횡스크롤 달리기 게임들은 유독 '게임은 트릭'이라는 말이 자주 떠오르는 장르이다. 무한히 생성되는 오브젝트, 무릎 관절이 걱정되는 주인공 캐릭터, 끝도 없이 스크롤되며 멀미를 절로 유발하는 배경화면까지. 이 장르의 게임은 만들기도 쉽고, 플레이하기도 간단해서 튜토리얼에서 자주 사용되는 장르인 것 같다. 뭐, 아무튼. 이게 중요한 게 아니고. 지금 말하고자 하는 부분은 배경화면을 무한히 스크롤하게 만드는 부분에 대한 것이다. 그것도 Collider를 이용해서 말이지. 2. Collider의 사이즈를 가져올 수 있다. 유니티 3년 공부하면서 이건 첨 알았다... GetComponent를 이용해 Collider를 가져온 뒤, .size를 붙여주면 된다. repeatWidth ..
출처 5.2 시퀀스 | 파이썬 프로그래밍 입문서 (가제) 박연오가 도서출판 인사이트와 함께 준비하고 있는 파이썬 프로그래밍 입문서입니다. 질문과 의견은 페이지 하단의 댓글란에 남겨주세요. python.bakyeono.net 1. 시퀀스 시퀀스란, 데이터에 순서(번호)를 붙여서 나열한 것으로, 리스트가 대표적인 시퀀스에 해당한다. inter_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]## sequence example 시퀀스는 순서로 요소를 가리키는 것이 가능하다. 즉, 인덱스라는 개념을 가지고 있기 때문에 인덱스를 활용해 사용자가 원하는 특정 요소만을 골라낼 수 있다. inter_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]## sequence example ..