Book Image

Building an FPS Game with Unity

5 (1)
Book Image

Building an FPS Game with Unity

5 (1)

Overview of this book

Table of Contents (18 chapters)
Building an FPS Game with Unity
Credits
Foreword
About the Author
Acknowledgment
About the Reviewers
www.PacktPub.com
Preface
Index

Creating a UnitBank


The next thing we need to do is to create a weapon that will associate with the mesh we just created. In UFPS, any kind of weapon that uses some kind of resource is referred to as a UnitBank. These UnitBanks use Units to fire. To create a UnitBank perform the following steps:

  1. Let's create a UnitBank for our weapon by going to the top menu and selecting UFPS | Wizards | Create Item Type | UnitBank.

  2. Once created, go over to the Project tab and change the name of the New UnitBank Type file to CQAssaultRifle by clicking on the file and renaming it (or by pressing F2).

  3. From the Inspector tab, under Display Name, change the value to CQ Assault Rifle and, under Unit, select the type of bullet you want to use. In this case, I will use MachinegunBullet.

  4. Next, select the Capacity value to 32. This means that the weapon can fire 32 shots before it needs to be reloaded.

  5. Finally, we will drag and drop the file into the Weapons folder.

Note

More information on UnitBanks can be found in the...