Fortunately its easy and a basic in Unity!
you don't do this
breakableObject = GameObject.Find("Breakable");
the good news is the cast will tell you what object you hit!!! great, eh?
it's basically
hit.collider.gameObject
You can use hit.collider.gameObject.name
in a Debug.Log for convenience.
it's that easy!
Note you then (if you need it) get your component on that object with something like .GetComponent<YourBreakishBlock>();
.. easy.
Note that you can CHECK if the object hit, is one of the "YourBreakishBlock" objects, by simply checking if that component is present.
Note simply google something like "unity physics raycast out hit, which object was hit ?" for endless examples,
https://forum.unity.com/threads/getting-object-hit-with-raycast.573982/
https://forum.unity.com/threads/changing-properties-of-object-hit-with-raycast.538819/
etc etc
--
Make this simple class...
public class ExamplePutThisOnACube: MonoBehavior
{
public void SAYHELLO() { Debug.Log("hello!"); }
}
Now put that on SOME cubes but NOT on OTHER cubes.
In your ray code,
ExamplePutThisOnACube teste =
hit.collider.gameObject.GetComponent<ExamplePutThisOnACube>();
and then check this out ..
if (teste != null) { teste.SAYHELLO(); }
Now run the app and try pointing at the various cubes!!!!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…