unity_实用小技巧(const)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity_实用小技巧(const)相关的知识,希望对你有一定的参考价值。
const:声明某个常量字段或常量局部变量。
注意:常量字段和常量局部变量不是变量并且不能修改
利用const管理游戏标签
例如:
//管理所有标签
public const string PlayerPrefs= "player";
public const string enemys = "enemys";
public const string items = "items";
以上是关于unity_实用小技巧(const)的主要内容,如果未能解决你的问题,请参考以下文章