Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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 /
  • Help Room /
avatar image
0
Question by MichaelABC · Feb 14 at 07:07 PM · raycastlistenumlinecastlinq

Add only one Raycast/Linecast hit to a list

I have made this script so that with the mouse I can "select" the Spriterenderer of these gameobjects I call "molecules" and change them. To select them and unselect them I add them and remove them from a list. I need to use a Linecast because the idea is that even if I don't click exactly on them, but I have the mouse in their vicinity I can select them.

NOTE: I am using some Linq

     using System;
     using System.Collections.Generic;
     using System.Linq;
     using UnityEngine;
      
     public class CursorXhair : MonoBehaviour
     {
         public Sprite newSprite;
         public Sprite originalSprite;
         List<SpriteRenderer> collidingObjects = new List<SpriteRenderer>();
      
         void Update()
         {
             Vector2 playerPos = Player.transform.position;
             Vector2 mousePos = Camera.main.ScreenToWorldPoint(Input.mousePosition);
             Vector2 direction = mousePos - playerPos;
      
             transform.position = mousePos;
      
             Debug.DrawRay(playerPos, direction);
             var hitObjects = Physics2D.Linecast(mousePos, playerPos);
      
             if (hitObjects.collider != null && hitObjects.collider.tag == "Int_Molecule")
             {
                 Debug.Log("hitObjects is colliding");
                 hitObjects.collider.GetComponent<SpriteRenderer>().sprite = newSprite;
                 collidingObjects.Add(hitObjects.collider.GetComponent<SpriteRenderer>());
      
             }
             else if (collidingObjects.Count >= 1 && hitObjects.collider.tag == "Player")
             {
                 Debug.Log("hitObjects is not colliding");
                 collidingObjects.Last().GetComponent<SpriteRenderer>().sprite = originalSprite;
                 collidingObjects.RemoveAt(collidingObjects.Count - 1);
             }
      
         }
     }



It works well, however I want only one molecule to be selected at a time. This seems not possible because the first if condition keeps being satisfied in these example:

alt text

alt text

As I am struggling for a solution I thought that maybe I need a way to distinguish the first and second hit molecules, so that only one is returned and changed, but how?

I was thinking, some possibilities:

  • Return only the first object hit (does this option even makes sense?)

  • Work out the distance from the mouse and pick only the closer one

  • Create a mirror list of no longer colliding objects



However I am not sure how I could make neither of this possibilities realities in code. Any suggestions?

still-if-two.png (9.9 kB)
if-two.png (10.4 kB)
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

0 Replies

· Add your reply
  • Sort: 

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

233 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

Related Questions

raycast : get normal value of linecast hit 1 Answer

My Raycast is returning True all the Time 1 Answer

How do check which enum value was selected? 2 Answers

I have trouble understanding arrays and enums. When and how? 0 Answers

Cant figure out how to implement a inventory system 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