Help me, first project!
I'm doing a solar system and I am hard of how to move the camera in my project, I would implement the same camera in this video tutorial: https://www.youtube.com/watch?v=z6KqKORrSk0 At 8:38 of the video it puts a script and at 8:56 he puts another script ... I wonder if anyone knows how to do these script, where to start ... or is there another way to do the same movement camera ... the image below is my project.
It is my first project i am beginner with Unity. Thank you!
Answer by CptBolee · Nov 24, 2015 at 03:20 PM
How exactly do you want to rotate Camera... do you want it to follow earth or?
You can do that by addind Addforce function Or by using
float move1=1;
float move2=1;
void Update() {
transform.position = new Vector3(move1,move2,0f);
move1++;
move2++;
}
Something like that... if you know C# you can configure it to follow circle around the sun...
Your answer
Follow this Question
Related Questions
Move camera to look around with mouse 0 Answers
Camera Moving Dependless On World Axis 1 Answer
How to recreate the Silent Hill 1 camera style? 0 Answers
Camera movement with arrow keys? 1 Answer