-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Learning C# by Developing Games with Unity 3D Beginner's Guide
By :

Not all variables need to be public
. If there's no need for a variable to be changed in the Inspector panel nor be accessed from other scripts, it doesn't make sense to clutter the Inspector panel with needless properties. In LearningScript
, perform the following steps:
private int number1 = 2;
int number2 = 9;
You will notice in the Inspector panel that both properties, Number 1 and Number 2 are gone.
private int number1 = 2;
The preceding line explicitly states that the number1
variable is to be private
, therefore the variable is no longer a property in the Inspector panel. It is now a private variable to store data.
int number2 = 9;
The number2
variable is no longer visible as a property either, but you didn't specify it as private
.
If you don't explicitly state whether a variable will...
Change the font size
Change margin width
Change background colour