Hi, i’m trying to make kind of a spectate view, exactly the same as counter strike has. In which you can fly around the map. I tried to do it, but I really dont know how; i watched some videos but they weren’t helpful.
Could somebody explain how can I make the main camera move using W A S D (forward,backward,left,right) and Q E (up,down)
I want to add a crosshair fixed to the middle also.
Take into account I’ve just started usig unity. (Dont skip any detail)
Thanks
The hard part here will be the rotation of the camera with the mouse. The good news is, the script is already done by Unity (Asset->import package->character controller->MouseLook.cs)
Then you just have to add the easy part, moving the camera along it’s axes transform.up/right/forward etc.
Also, the odds of that script already existing somewhere on the web are pretty high, check the unify community, it’s just the sort of things they might have.