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 KatieN · Feb 01, 2019 at 09:53 PM · 2dcollisionmovementcolliderpoint-and-click

Help with 2D point and click move script that will stop moving when it hits a wall

Hi! I am new to Unity and have been working on this problem for the past four days. I'm not getting anywhere. Please help! I have gotten my player to move via mouse clicks and stop moving when it hits an obstacle. But when I click again above it while it is touching a collider the player will float into the direction I clicked forever/until it hits another collider. I don't want this to happen. I want it to go to the place I have clicked on even when it is touching a collider. Is it possible to do this? (My game is 2D) My script:

 public class PointAndClick : MonoBehaviour {
         public float speed = 20f;
         public Rigidbody2D rb;
         public Vector2 destination;
         public Vector2 place;
         public Vector2 journey;
         // copy and pasted
         public Vector2 gap;
     // Use this for initialization
     void Start () {
         rb = GetComponent<Rigidbody2D>();
         place = rb.transform.position;
     }
     
     // Update is called once per frame
     void FixedUpdate () {
         if(Input.GetMouseButtonDown(0)) {
             destination = Camera.main.ScreenToWorldPoint(Input.mousePosition);
             journey.x = destination.x - place.x;
             journey.y = destination.y - place.y;
             rb.velocity = new Vector2 (journey.normalized.x * speed * Time.deltaTime, journey.normalized.y * speed * Time.deltaTime);
         }
     }
     
     void LateUpdate () {
         place = rb.transform.position;
         // copy and pasted from here down
         gap.x = Mathf.Abs (destination.x) - Mathf.Abs (place.x);
         gap.y = Mathf.Abs (destination.y) - Mathf.Abs (place.y);
         if (.05 > Mathf.Abs (gap.x))
         if (.05 > Mathf.Abs (gap.y))
         rb.velocity = new Vector2 (0,0);
     }
     void OnCollisionEnter2D () {
         rb.velocity = new Vector2(0, 0);
         Debug.Log("point and click collision");
         }
 }
 

Help me Obi-Wan Kenobi. You're my only hope! P.S. I got most of this script from https://www.youtube.com/watch?v=0pHzTIIiYaY&t=1366s P.P.S. I'm open to changing my moving mechanics I just want it to be a point and click that will stop when it hits an obstacle and works for 2D.

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 myzzie · Feb 01, 2019 at 10:12 PM

In this situation, I'd go with Raycast2D. If there's a hit, compare the distance between your position and the hit point and set your velocity to 0 when you've reached close to the wall.

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

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

How can I detect a collision point, but allow player to pass through collider. 1 Answer

Unity2D side collision detection 1 Answer

How do I get the player and the object they touch both disappear/destroyed? 1 Answer

My object is going through boundaries Problem! 1 Answer

Unity getting an object to pass through another object but still trigger collision 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