How To Change Bootcamp Demo To First Person!

Hey guys, I was wanting to know exactly how to make unity's bootcamp demo from third person to first? Im really not that good with scripting or game engines period. I kinda need help! Thanks

2 Answers

2

Well, you would need to remove all dependancys on the soldier camera javascript, and then simply add the mouse look script. To really simulate walking, attatch the camera as a child to the head bone on the model. Alternativly, set the distance values to zero, but then you would have to deal with the zoom part of the script. In short, there isn't a way to do this without a little scripting.

Oops! I already started messing around with it.

your easiest option is to set the values to zero, and, in the soldier camera script, change the zoom part from moving the camera forward to lowering it's field of view. Also, you could remove/comment out the whole section on zooming in and out, therefore removing it, but not having to worry about the transform position of the camera at runtime.

I know I need to use a little scripting I'm aware of that, but I need help with that.