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 JA_555 · Jan 29, 2015 at 10:18 PM · cameracamera-movementmathf.lerp

Why can't I change my camera's position?

This is the script I'm using to change my camera's Y position. It's supposed to take the position of the camera and move it into a lower or higher position. So why is my camera just staying in one position and shaking? Should I use Time.time? Should I use Slerp?

     var lower : float;
     var higher : float;
     var currheight : float;
     var raising : boolean = true;
     var speed : float = 1f;

     function Start () {
     lower = GameObject.Find("Terrain").transform.position.y += 1;
     higher = GameObject.Find("Terrain").transform.position.y += 1;
     currheight = GameObject.FindGameObjectWithTag("cam2").transform.position.y;
     }
     
     function Update () {
     if (raising){
     GameObject.FindGameObjectWithTag("cam2").transform.position.y = Mathf.Lerp(currheight, lower, Time.deltaTime*speed);} 
     if (raising == false){
     GameObject.FindGameObjectWithTag("cam2").transform.position.y = Mathf.Lerp(currheight, higher, Time.deltaTime*speed);} 
     
     }

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

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Chris333 · Jan 29, 2015 at 10:44 PM

Hi,

dont use Find methods in the Update method. Get the reference to your camera at the Start method and use this reference in the update method instead. They are very expensive.

You could use Vector3.SmoothDamp to move objects, thats what i use to move objects all the time. http://docs.unity3d.com/ScriptReference/Vector3.SmoothDamp.html

Comment
Add comment · Show 1 · 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
avatar image JA_555 · Jan 30, 2015 at 02:59 AM 0
Share

That looks good for other stuff, but it also moves the x and z positions. I just want to move the y position slowly, and that's it. I tried doing something like this: Vector3(transform.position.x, from+1, transform.position.z));

so that it would keep the x and z position, but that didn't work

avatar image
0

Answer by MESSI007 · Mar 16, 2017 at 10:22 AM

Vector3 derection you can use Camera.main.transform.Translate(derection) ; get the main camera with Camera.main and translate it with Transform.Translate

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

How to sync camera and head? 0 Answers

Isometric - Camera follow an object when at the edge of the screen 1 Answer

How to create a panning, rotating camera with Cinemachine Freelook camera? 0 Answers

Unity - Dancing Ball World camera following and rotating system 1 Answer

Free Look Camera 1 Answer


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