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 serdechny · Jun 05, 2020 at 03:28 PM · vector3lerptransform.positionsmooth

smoothly change position of an Object

My goal is to make my character pickup a weapon smoothly, point being when I change the position: weapon.transform.position = weaponPos.position; it changes the position immediately, I tried to use:

weapon.transform.position = Vector3.Lerp(weapon.transform.position, weaponPos.transform.position, 10)

as well as

weapon.transform.position = Vector3.Lerp(weapon.transform.position, weaponPos.transform.position, 10 * Time.deltaTime) but it still doesnt work, what can I do? here is the whole code:

     private void FixedUpdate()
     {
         IsLookingAtWeapon();
     }
 
 void IsLookingAtWeapon()
     {
         Ray ray = cam.ViewportPointToRay(new Vector3(0.5F, 0.5F, 0));
         RaycastHit hit;
         if (Physics.Raycast(ray, out hit, maxDistence1)
             && hit.collider.gameObject.CompareTag("Weapon"))
         {
             if (Input.GetKeyDown(KeyCode.E))
             {
                 if (!HasWeapon)
                 {
                     weapon = hit.collider.gameObject;
                     weapon.transform.rotation = weaponPos.rotation;
                     weapon.transform.position = Vector3.Lerp(weapon.transform.position, 
                     weaponPos.transform.position, 10);
                     weapon.transform.parent = weaponPos;
                     weapon.GetComponent<Rigidbody>().isKinematic = true;
                     weapon.GetComponent<BoxCollider>().isTrigger = true;
                     HasWeapon = true;
                 }
 
 
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
1
Best Answer

Answer by Jasr_88 · Jun 05, 2020 at 03:52 PM

Vector3.Lerp will wok only (as you want) if you put it on a loop (like the update loop or a corroutine)

try calling a coroutine like this:

 IEnumerator SmoothTranlation(Vector3 target, float speed) {
         while (weapon.transform.position != target)) {
             weapon.transform.position = Vector3.Lerp (weapon.transform.position, target, Time.deltaTime * speed);
             yield return null;
         }        
 }

instead of this line :

 weapon.transform.position = Vector3.Lerp(weapon.transform.position,weaponPos.transform.position, 10);

[EDIT]: oh thats right!, i'm sorry for that, you only need to use the "!=" operator

Hope it helps!

Comment
Add comment · Show 3 · 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 serdechny · Jun 05, 2020 at 04:13 PM 0
Share

it shows that I cant convert vector3 to float, $$anonymous$$athf.Approximatley takes 2 floats not 2 vectors

avatar image serdechny · Jun 05, 2020 at 05:01 PM 1
Share

Tnx man actually works!!! only one problem, when you pass the target vector3 it saves the position as it own var that cant change, that means the the weapon will come specifically to that point, that it means that it wont go the the weaponPos.transform.position it will go to the vector3 but it easily gets fixed just by passing transform Target ins$$anonymous$$d of Vector3 target

in other words thats the final solution:

 IEnumerator SmoothTranlation(Transform target, float speed)
     {
                 while (weapon.transform.position != target.position)
                 {
                     weapon.transform.position = Vector3.Lerp(weapon.transform.position, target.position, Time.deltaTime * speed);
                     yield return new WaitForEndOfFrame();
                 }
 
     }

 
avatar image Jasr_88 serdechny · Jun 05, 2020 at 05:04 PM 1
Share

always glad to help!

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

160 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 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 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 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 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 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 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 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

moving between two points over time 1 Answer

Object keeps moving when using Vector3.Lerp on transform.position 0 Answers

How to smooth my camera (Vector3.Lerp) 0 Answers

How would I smooth out a Quaternion? 2 Answers

trouble with smooth damping 0 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