📜  unity public static 变量 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:49.044000             🧑  作者: Mango

代码示例1
Static variables in Unity. A static variable in Unity is a variable that is shared by all instances of a class. To mark a variable as static in Unity, simply add the static keyword when declaring it. Then, to access the variable, instead of referring to an instance of the class, you can access it via the class itself.