1 / 7

게임기획 6 강

게임기획 6 강. 세부 기획서 작성. 디자인 문서란 ?. 기능 / 컨텐츠 제작에 필요한 세부 명세서 컨셉 기획서만으로는 실제 제작을 할 수 없다 . 어떤 에셋을 만들어야 하는 지 알려준다 . 캐릭터 / 스테이지 / 애니메이션 /SFX/VFX/UI 어떤 코드 ( 변수와 함수 ) 를 작성해야 할지 알려준다 . 화면을 터치하면 캐릭터는 3 unit 만큼 점프한다 . 함수 변수 변수 함수. 세부 기획서 작성 예시 – 두더지 게임. 세부 기획서 작성 예시 – 두더지 게임.

Download Presentation

게임기획 6 강

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 게임기획 6강 세부 기획서 작성

  2. 디자인 문서란? • 기능/컨텐츠 제작에 필요한 세부 명세서 • 컨셉 기획서만으로는 실제 제작을 할 수 없다. • 어떤 에셋을 만들어야 하는 지 알려준다. • 캐릭터/스테이지/애니메이션/SFX/VFX/UI • 어떤 코드(변수와 함수)를 작성해야 할지 알려준다. • 화면을 터치하면캐릭터는3 unit 만큼점프한다. 함수변수 변수함수

  3. 세부 기획서 작성 예시 – 두더지 게임

  4. 세부 기획서 작성 예시 – 두더지 게임 두더지가 나오는 시간은 1.0초에서 4.5초 사이로 랜덤하게 설정 Code Asset public IEnumerator Wait() { MS = Molestate.None; Ani_Count = 0; float wait_Time =Random.Range (0.5f, 4.5f); yield return new WaitForSeconds (wait_Time); Open_On (); }

  5. 세부 기획서 작성 예시 – 두더지 게임

  6. 세부 기획서 작성 예시 – 두더지 게임 같이 작성 해봅시다. ^^

  7. 세부 기획서 실습 2

More Related