목록Unity Learn/FPS Micro Game (38)
Priv's Blog
출처 FPS Mod: Add a new Enemy Robot with a hat - Unity Learn The game comes with two enemy robots already in the gameplay. Let's add (instantiate) a new enemy robot and customize it by adding a fun character prop like a hat. learn.unity.com 1. 새로운 적을 인스턴스화 해봅시다! 1) Project 창에서 다음 경로로 이동해주세요: Assets > FPS > Scenes 2) MainScene을 더블 클릭하셔서 씬을 열어주세요. 3) Project 창에서 다음 경로로 이동해주세요: Assets > FPS > Prefabs..
출처 FPS Mod: Tweak the Damage Dealt by Enemies - Unity Learn Learn how to make an enemy’s attacks more or less damaging to the player and adjust the range in which they can attack the player from. learn.unity.com 1. 공격력 수정하기 적의 공격력을 제어하는 두 곳이 있으나 어디에 있는지 찾는게 쉽지 않으실 겁니다. 1) 먼저 MainScene을 열어주세요. (Project 창에서 Assets > FPS > Scenes 로 이동하신 뒤, MainScene을 더블 클릭하시면 됩니다.) 주의: 게임 플레이에 포함된 봇들(bots) 중 하나만 파라..
출처 FPS Mod: New Loot Item from Destroying Enemies - Unity Learn When you destroy an enemy, the default “loot” it will drop is a health pickup. In this mod, you will learn how to customize the loot item it drops, like a jetpack, or a new weapon. learn.unity.com 1. 새로운 전리품 아이템 추가하기 우리가 적을 처치하면 아래와 같이 Loot_Health 기본 "전리품"을 획득하게 됩니다. "Loot_Health" 외에도 "Loot_Jetpack"과 같은 다른 종류의 "전리품"도 할당시킬 수 있답니다. 프리..
출처 FPS Mod: Weapon Parameters - Unity Learn In this mod you will learn how to change your weapon's parameters. Make it a sniper rifle or a shotgun instead. learn.unity.com 1. 주 무기를 스나이퍼 라이플로 바꿔봅시다. 1) 주 무기 프리팹을 Project 창에서 찾아주세요. Assets > UTech > FPS > Prefabs > Weapons > Weapon_Blaster 경로로 이동해주세요. 2) 더블 클릭하셔서 프리팹을 열어주세요. Scene 창의 기즈모(Gizmo) 버튼을 클릭해 2D 기즈모가 아니라 3D 기즈모를 사용 중인지 확인해주세요. 3) Hierarch..
출처 FPS Mod: Customize weapon projectiles - Unity Learn Learn how to shoot some cookies and add physics to the mesh you've created. learn.unity.com 1. 새로운 발사체 제작하기 1) 먼저, 새로운 프리팹(Prefab)을 제작해야 합니다. 현재 씬(Scene)에서 새로운 게임오브젝트를 추가하는 것부터 시작해봅시다. 2) 원하시는 이름으로 수정해주세요. 3) 이번 튜토리얼에서는 NewProjectile 이라고 하겠습니다. 4) 이제, hierarchy 창에 있는 새로 생성한 오브젝트를 Project 창으로 드래그해주세요. 드래그하실 경로는 Assets > Utech > FPS > Prefabs ..
출처 FPS Mod: Set up a new burst rifle weapon - Unity Learn In this mod you will learn how to add a new weapon from scratch, pick it up and try it out. learn.unity.com 1. 새로운 무기 추가하기 1) 먼저, 프리팹(prefab)을 만들어야 합니다. 현재 scene에 게임오브젝트를 추가하는 것부터 시작해보죠. Hierarchy 창에서 Create > Create Empty를 클릭해주세요. 2) 다음으로, 오브젝트의 이름을 "Weapon_BurstRifle"처럼 좀 더 알기 쉬운 이름으로 변경해주겠습니다. 3) 이제, 방금 생성한 게임오브젝트를 Project 창으로 드래그하여 프리..