
上QQ阅读APP看书,第一时间看更新
Time for action – Make the ball re-appear
- Double-click on the DisappearMe script. MonoDevelop will open up and display the script.
- Change the word
false
totrue
. - Save the script.
- Click on the Play button to test your game.
Your script should look like this:
function Update () { renderer.enabled = true; }
Bingo! The Ball started out invisible and then magically appeared. That means that the Mesh Renderer component and the renderer that we referred to in our script are the same thing. And the checkbox in the Inspector panel is actually the enabled
property in checkbox form—instead of true
and false
, it shows us checked and unchecked states! In fact, you can even keep an eye on the checkbox when you click on Play and see it change states. That tingling sensation means it's working.