Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by alexanderameye · May 17, 2014 at 05:54 PM · c#animationcameramonodevelop

Smooth transition from Camera1 to Camera2?

I have this piece of code before Start()

 //Sets the current camerastate to true (default is Third-Person)
 private bool Camerastate = true;

And this piece of code in Update()

 //Sets camerastate to the Third-Person when true, and First-Person when false
         if(Camerastate == true)
         {
             ThirdPerson.enabled = true;
             FirstPerson.enabled = false;
         }
 
         else 
         {
             ThirdPerson.enabled = false;
             FirstPerson.enabled = true;
         }
 
         //Sets the Camerastate to the opposite of the current Camerastate
         if(Input.GetKeyDown(KeyCode.Tab))
         {
             Camerastate = !Camerastate;
 
         }

It works very well but I was wondering how I could make the transition more smooth. I don't need any Crossfade effects or Checkerboards or something, but I just want the view to make a certain, smooth motion from the Third-Person view and the First-Person view. I want it to do something like in this video, where the starting point is where Camera one is, and the end point where Camera is. --> Time in video: See 5:56 to 6:01) Thanks a lot guys!!!

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by luminance · May 17, 2014 at 06:11 PM

You want to Slerp the position and rotation of the camera from one position to another, something like this:

 float timer = 0f;
 void Update()
 {
     timer += Time.deltaTime
     if(timer <= 1f)
     {
         camera.position = Vector3.Slerp(camera.position, targetPosition, timer);
         camera.rotation = Vector3.Slerp(camera.rotation, targetRotation, timer);
     }
 }

You'll need to define what the target position is, and you might want the move to take longer than 1 second, but that's the gist of what you want.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

21 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Unassigned Reference Exception 4 Answers

Orbit 2D camera around circle but keep lookat towards z axis 1 Answer

Problem with wave like movement when rotating around X and Y axis with mouse input // Please Close/Delete 1 Answer

why not run animation when doublication gameObject ???? 0 Answers

mystery RestartLevel function used in official tutorial 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges