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 crazykalel · Sep 26, 2014 at 02:41 PM · positionmoveclickvectorpoint

Move to a clicked point?

So basically, I want the cube to move into the clicked point (left click). Unfortunately, I've been trying to figure it out yet I've still failed. What is the best way to make the cube move to the clicked point? Here's the code:

*The code's supposed to be put into the "code here" section". Thank you very much! :)

using UnityEngine; using System.Collections; using System;

public class VehicleAvoidance : MonoBehaviour { public float speed = 20.0f; public float mass = 5.0f; public float force = 50.0f; public float minimumDistToAvoid = 20.0f;

 //Actual speed of the vehicle 
 private float curSpeed;
 private Vector3 targetPoint;
 private float initialSpeed;

 // Use this for initialization
 void Start () 
 {
     mass = 5.0f;
     targetPoint = Vector3.zero;
     initialSpeed = speed;
 }

 void OnGUI()
 {
     GUILayout.Label("Click anywhere to move the vehicle to the clicked point");
 }
 
 // Update is called once per frame
 void Update () 
 {
     //Vehicle move by mouse click
     RaycastHit hit;
     var ray = Camera.main.ScreenPointToRay(Input.mousePosition);

     if(Input.GetMouseButtonDown(0) && Physics.Raycast(ray, out hit, 100.0f))
     {
         targetPoint = hit.point;
     }
     
     Vector3 dir = new Vector3(0.0f, 0.0f, 0.0f);
     
     //1- Compute the directional vector to the target position
     // CODE HERE

                     



     //2- Exit the update function, so that the vehicle stops when the target point is 1 meter away
     // CODE HERE

     
     //Adjust the speed to delta time
     curSpeed = speed * Time.deltaTime;
     
     //Apply obstacle avoidance
     dir += AvoidObstacles();
     dir.Normalize();

     //Rotate the vehicle to its target directional vector
     var rot = Quaternion.LookRotation(dir);
     transform.rotation = Quaternion.Slerp(transform.rotation, rot, 5.0f *  Time.deltaTime);

     //Move the vehicle towards the target point
     transform.position += transform.forward * curSpeed;
 }
 
 //Calculate the new directional vector to avoid the obstacle
 public Vector3 AvoidObstacles()
 {
     return new Vector3(0.0f, 0.0f, 0.0f);
 }

}

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 Ezro · Sep 26, 2014 at 03:30 PM

Hi crazykalel,

I would recommend giving this solution a go: http://answers.unity3d.com/questions/639139/how-to-move-an-2d-object-to-mouse-click-position-i.html

You'll still have to implement the turn rate, but the movement should work using MoveTowards().

Regards, Ezro

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

mouse clicking on the plane and drag to other position 1 Answer

translate 2 Answers

move to a position not being looked at 1 Answer

button click to move camera to another position 2 Answers

Move to clicked hitpoint 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