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 camtronius · Apr 17, 2014 at 05:34 AM · raycastraycastingrtsrayhit

how to select an object with raycasting

Hi, Im making an rts and I have 2 classes, one which controls the mouse pointer, and another that controls unit movement. I am trying to make it so an individual unit is selected when i click on him. I got the code for selecting multiple units in another tutorial. I am trying to use raycasting to select an individual unit. So far i have this below, along with other code that is not shown:

 Ray ray = Camera.main.ScreenPointToRay (Input.mousePosition); //trying to single select
         RaycastHit hit;
         
         Debug.DrawRay (ray.origin, ray.direction * Mathf.Infinity, Color.red);
         
         if (Input.GetMouseButtonDown (0)) {
             
             if(Physics.Raycast(ray,out hit, Mathf.Infinity)){
                 Debug.Log(hit.collider.name); //prints the name of the object it is touching
                 //selected = hit.collider;
             }
         }else if(Input.GetMouseButtonUp(1)){
             
         }

so, I am trying to make it so when the ray detects an object that is "Unit" (the name of the object I have) it changes its selected status to true. So I basically just need it to get the object that is hit and set its selected to true. Any ideas? Thanks in advance, im a bit new.

Comment
Add comment · Show 2
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 robertbu · Apr 17, 2014 at 05:52 AM 0
Share

Without seeing the interface to your selection system, any answer would be guess work. Depending on how you have things setup, you might do something like:

 SomeScript ss = hit.collider.GetComponent<SomeScript>();
 ss.SetSelection();

But you may have implemented your selection as static class variables with a static function. In that case you might do:

 SelectionClass.SetSelection(hit.collider.gameObject);
avatar image robertbu · Apr 17, 2014 at 04:51 PM 0
Share

Then it would be:

 Unit unit = hit.collider.GetComponent<Unit>();
 if (unit != null) {
     unit.selected = true;
 }

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by camtronius · Apr 17, 2014 at 03:20 PM

@robertu I have a class called "Unit" which is applied to my Unit in the game. The Unit class has a boolean called "selected". I need to make it so when the Object "Unit" is hit by the raycast it sets the "selected" boolean to true for that hit object. Does that make more sense? Thanks,

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

20 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

Related Questions

How to use raycast on generated objects. 0 Answers

Change raycasting 1 Answer

Raycast not visible 1 Answer

Raycast returns null for no apparent reason 0 Answers

Click&Drag Misterious Disappearing! 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