Nitro On Car

Is it possible to create a nitro effect on a car, like when you press q or e or something.
Effects i am looking for: Camera pulled back, glow on car , increased speed, and particles coming from the exaust.

And can this be done in unity?

All of the above can be done in unity. If the camera chasing the player’s car is Lerping, by simply increasing the car’s movement speed will produce the effect of the camera beeing “pulled back”. The glow on car can by achieved by applying a different Shader on the car for the duration of the Nitro boost (Unity has a lot of shaders and you can write more of your own). The increase in the car’s velocity based on the key stroke of, for example, the letter Q, can be achieved by combining Input Methods with Physics Methods.

There’s not much that you can’t do in Unity if you know how.

is there a way you can give me a script?

Not really no, because it’s not just one script, it’s several, distributed in different objects in your scene, and they all depend on how you have your scene set up, how your car moves, and so on. Check each one of my linked words in the above post. Each one points to a different article in Unity’s documentation with a code example of how each one is used. Study them and understand what they do exactly, and you’ll be able to do it yourself.

The only way I can give you a script is by setting up your entire game on my own.

The camera effect is not just simply lerping it backwards, you should also lerp the field of view… ordinarily it is 60, lerp it up to 70 when at high speeds… it will make a dramatic difference.

try this http://www.youtube.com/watch?v=oZWCg9pM7Bc&list=UUJNI1KRjHTRY66qThiKSU5Q its free and have nitro with all the effects you asking

Even though I asked this question almost 3 years ago, I think ill still derive amazing skill with your kit. thanks alot.