Hi. I’m new to Unity- the only thing I’ve done is get partway through Tornado Twins ‘Worm Game’. But I want to make a game similar to but much more basic than ‘Nazi Zombies’ from Call if Duty. I have the free version if unity and I am not worried about textures nor animations. I simply want to make it to where Its an FPS and I have a gun, maybe incorporate a system Later where I can unlock guns, and the zombies have a pathfinding system that allows them so ‘see’ at a certain distance, and if im in there field of view, they chase me, and if close, attack. I would be able to take a certain amount of hits/damage from them before death. The zombie would stop chasing me after I’m out of there field of view or if I kill him. There would be several zombies that spawn, and they would have to navigate through walls and other objects, however they cannot see thru the walls/ objects. It sounds simple enough, but I want to know if any1 has any links to or scripts that would give the ai the abilities as prementioned, and a first person camera?
Developing a game is not about collecting a whole load of things that someone else has made and dumping them together. You won’t learn much about Unity doing that, and you’ll constantly run into difficulties. Start way simpler, with stuff you can entirely make by yourself. That way you will truly learn about the things you do.
Hey,
First of all, i recommend checking out the first person shooter(FPS) tutorial at: http://unity3d.com/support/resources/tutorials/fpstutorial.html
That will explain how to make a first person game.
Then, for the AI, check out the A* Pathfinding system (http://www.arongranberg.com/unity/a-pathfinding/). This should give you enough to get started.
I do recommend learning scripting…
The easiest is Unity Script (JavaScript)…
Comment back if you need more help!!!
-Grady
Thank you, both of you