Hi I have a set space, and need to know how I can change the camera by pressing the number 1 and number 2 in C #, I need to Trasnporte by the cameras, and look in different places, thanks. anything else I can put two cameras to the same character?? and to make that change too, say that the front of the camera and the character behind the character.
Thanks again.
There were some things in there I had a hard time understanding, but changing cameras is pretty simple, you do so by setting Camera.enabled = true on the camera you want to start rendering from, and Camera.enabled = false on all other cameras in your scene. This can be done in few lines of code using the static variable Camera.allCameras which returns an array of all enabled cameras. Disable everything in that array, then reenable the one camera you want to change to.
The last bit you wrote was harder for me to understand, did you mean a kind of rear view camera, sort of like what you do to render content into a rear view mirror in a car racing game?
Yeah!!!, is for a racing game !!! How can I do it ??