|
Original title: can someone make a script on it in java i want to know the script which do this thing
(comments are locked)
|
|
A) There is no Java in Unity. There is, however, JavaScript also referred to as UnityScript. JavaScript has nothing to do with Java ;-) B) What you are looking for is this:
C) If you need to learn programming, you could try one of the tutorials, e.g. start with this answer: How to get started learning JavaScript or UnityScript? i want to invisible that object which i want
Jul 20 '10 at 05:17 PM
usman_the_great
i learnt the basics of the java
Jul 20 '10 at 05:19 PM
usman_the_great
As I've written in my answer, under B - you can user render.enabled = false to make the object invisible. The renderer makes the object visible - and when the renderer is disabled, the object is invisible. Might not be totally intuitive if you're just starting but makes a lot of sense if you have a bit of a deeper understanding of how Unity uses game objects and components. Regarding the "basics of java": There is no Java in Unity. If you know Java (the programming language and framework developed by Sun Microsystems), I recommend learning C# because it's very similar to Java.
Jul 20 '10 at 05:26 PM
jashan
now i know that how i do it by using trigger
Jul 20 '10 at 06:19 PM
usman_the_great
Great ... if you feel the answer is valuable and correct, you may consider "accepting" it by clicking on the little "check" icon next to the "score" (which currently says "3"). That will help people see that the question has an accepted answer.
Jul 20 '10 at 07:16 PM
jashan
(comments are locked)
|
|
why don't you just set the renderer.enabled= false;? That will make Unity forget about rendering that object and it will be invisible, un-interactive, un-responisve, etc. It'll be like it never existed until you reset the renderer.enabled to true again. So write the code, but if what I illustrated is what you are looking for then you at least have a hint of where to start. It'll still be interactive, responsive, and whatever else. It just stops rendering it is all, the collider and scripts will still work the same
Jul 20 '10 at 05:09 PM
Mike 3
(comments are locked)
|

I've changed the title to be useful for someone looking for a solution to the same problem and added the relevant tags. I won't write the code for you but in the answer, you're getting everything you need to write the code for yourself, which ... btw ... will be much more rewarding than copy'n'pasting someone else's code ;-)
Thanks for changing the title