├── .gitattributes ├── README.md ├── Resources.zip └── unity2021_3D_800600.png /.gitattributes: -------------------------------------------------------------------------------- 1 | *.unitypackage filter=lfs diff=lfs merge=lfs -text 2 | *.zip filter=lfs diff=lfs merge=lfs -text 3 | *.fbx filter=lfs diff=lfs merge=lfs -text 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # 절대강좌! 유니티 - 2021 3 | 4 | ## 리소스 파일 5 | 6 | 책에서 사용할 리소스는 아래 링크 주소(원드라이브)에서 다운로드 받아서 사용해주세요. 7 | 8 | - [2장에서 15장까지 사용하는 리소스 파일 (깃허브 다운로드)](https://github.com/IndieGameMaker/UnityBook/raw/master/Resources.zip) 또는 [원드라이브 다운로드](https://1drv.ms/u/s!Asker0nVo1TS9NEBlRjDVf3Bj8Z5Qg?e=V5Nn8p) 9 | - [15장에서 사용하는 리소스 파일(AngryBotResources.unitypackage)](https://1drv.ms/u/s!Asker0nVo1TS9NFWfdxKcpSuChdy3A?e=dZceJ3) 10 | - [15장에서 사용할 수 있는 템플릿 파일](https://1drv.ms/u/s!Asker0nVo1TS9ItvcuBpVsbs5cHntA?e=6SoDZT) 11 | 12 | ![UnityBook2021 Cover](unity2021_3D_800600.png) 13 | 14 | Q&A는 [www.Unity3dStudy.com](https://unity3dstudy.com/2021/06/09/UnityBook-2021-Published/#more) 에 글을 남겨주세요. 15 | 16 | 17 | ## 프로젝트 소스코드 18 | 19 | ### SpaceShooter 프로젝트 장별 완성 프로젝트 20 | 21 | [최종 프로젝트 리포지토리](https://github.com/IndieGameMaker/SpaceShooter2021) 22 | 23 | 프로젝트에 사용된 버전 : 유니티 2021.1.7f1 24 | 25 | - [2장 - 게임 개발 준비](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/2장) 26 | - [3장 - 게임 스테이지 제작](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/3장) 27 | - [4장 - 주인공 캐릭터 제작](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/4장) 28 | - [5장 - 총 발사 로직](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/5장) 29 | - [6장 - 적 캐릭터 제작](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/6장) 30 | - [7장 - 유니티 UI 시스템](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/7장) 31 | - [8장 - 게임 매니저](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/8장) 32 | - [9장 - 레이캐스트 활용](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/9장) 33 | - [10장 - 내비게이션 고급 기법](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/10장) 34 | - [11장 - 라이트매핑 및 라이트 프로브](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/11장) 35 | - [12장 - 씬 관리](https://github.com/IndieGameMaker/SpaceShooter2021/releases/tag/12장) 36 | 37 | ### Warrior 프로젝트 38 | - New Input System 프로젝트입니다. 39 | - [완결된 프로젝트](https://github.com/IndieGameMaker/Warrior) 40 | 41 | ### AngryBot2Net 프로젝트 42 | - 포톤 네트워크를 활용한 슈팅 게임 프로젝트입니다. 43 | - [완결된 프로젝트](https://github.com/IndieGameMaker/AngryBot2Net) 44 | 45 | ### 오탈자 확인 46 | 47 | - [오탈자 확인](https://github.com/IndieGameMaker/UnityBook/issues/1) 48 | -------------------------------------------------------------------------------- /Resources.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndieGameMaker/UnityBook/8c41bf957e1196e04809143e91770e9a65c55640/Resources.zip -------------------------------------------------------------------------------- /unity2021_3D_800600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IndieGameMaker/UnityBook/8c41bf957e1196e04809143e91770e9a65c55640/unity2021_3D_800600.png --------------------------------------------------------------------------------