Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 ZacGarby · Sep 05, 2015 at 04:12 PM · c#rigidbody2dvectorvector2moveposition

Rb2D.MovePosition not working - weird error...

Why does this line not work: By the way, movementOptions.rb is a Rigidbody2D variable, positionToMove is a Vector2 and speed is a float.

 movementOptions.rb.MovePosition(transform.position + Vector2.MoveTowards(transform.position, movementOptions.positionToMove, movementOptions.speed) * movementOptions.speed);

I get this error:

 Assets/Scripts/Unit.cs(56,67): error CS0121: The call is ambiguous between the following methods or properties: `UnityEngine.Vector2.operator +(UnityEngine.Vector2, UnityEngine.Vector2)' and `UnityEngine.Vector3.operator +(UnityEngine.Vector3, UnityEngine.Vector3)'





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 Positive7 · Sep 05, 2015 at 04:29 PM

because transform position is Vector3 and you're trying to use it as Vector2. Something like this should solve it :

 Vector2 PosXY = new Vector2(transform.position.x, transform.position.y);
         movementOptions.rb.MovePosition(PosXY + Vector2.MoveTowards(PosXY, movementOptions.positionToMove, movementOptions.speed) * movementOptions.speed);

Comment
Add comment · Show 7 · 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 ZacGarby · Sep 05, 2015 at 04:32 PM 0
Share

It gives the same error as last time (I switched out the GetComponent for the rb variable, which is already a rigidbdoy2d)

avatar image Positive7 · Sep 05, 2015 at 04:47 PM 0
Share

Sorry there was 2 transform.position. I updated my answer

avatar image ZacGarby · Sep 05, 2015 at 04:51 PM 0
Share

No errors this time, but it flies off at like a million miles an hour to somewhere far in the distance (does it matter that my rigid body is kinematic)?

If you want, ill send you the whole script

avatar image Positive7 · Sep 05, 2015 at 04:58 PM 0
Share

Well that's what this piece of code does. What are you trying to achieve? Nope Is$$anonymous$$inematic dosen't matter since it's not Physics based moving.

avatar image ZacGarby · Sep 05, 2015 at 04:59 PM 0
Share

I need to make the object move towards a point..

Show more comments

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

28 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

Related Questions

How do I Control An Objects Movement Only On the X Axis and Have a RigidBody Control Movement on the Y axis? 1 Answer

Move character forward constantly 1 Answer

Multiple Cars not working 1 Answer

C# Non-Static Member Rigidbody2D.MovePosition 1 Answer

Distribute terrain in zones 3 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