打印函数print与debug.log的区别
public static void print(object message)
{
Debug.Log(message);
}
没看错,实现就是通过Debug.Log来完成的。
所以Print就是Debug.Log的一个简单封装
public static void print(object message)
{
Debug.Log(message);
}
没看错,实现就是通过Debug.Log来完成的。
所以Print就是Debug.Log的一个简单封装