|
Hey. I'm trying to get a gameobject's name using raycast, and set it to a var. But exexuting the code give me the error "(11,41): BCE0034: Expressions in statements must only be executed for their side-effects." Heres my code.
(comments are locked)
|
|
hit.collider.gameObject.name; Just putting a variable on a line by itself generates that error. You need to assign something to it or assign it to something. :) Or, just get rid of that line - you are already printing it out a few lines later. Looks like it was just a cut-and-paste error.
Oct 09 '10 at 03:48 PM
Bampf
(comments are locked)
|

You don't need the "gameObject". "name" is a property of Object.