版本 |
作者 |
参与者 |
完成日期 |
备注 |
UnityAPI_Debug_V01_1.0 |
严立钻 |
|
2020.06.29 |
|
|
|
|
|
|
立钻哥哥:Unity是一个入门快、提高难的游戏引擎,想要提升能力,至少需要越过3道坎:API+Shader+综合能力;++1、API的积累:对API的合理利用不仅可以减轻自己的编码负担,而且往往可以提高程序的运行效率;这也是钻哥开始“Unity API”独立打造分类的初衷; ++2、Shader编程:想要做出一款精品游戏往往需要有高效的Shader的支持;Unity提供了一套改良的“Shader Lab”系统,优化了繁杂的“Open GL”编程; ++3、综合能力(技术+业务+管理):一款产品的制作除了功能编程外,往往会涉及很多其他领域,例如产品架构、UI交互设计、模型制作等,作为主要的编程人员,对其他相关领域的了解程序往往会影响到产品制作直至最后的产品体验; ++++立钻哥哥一直在推动【VR云游戏=Unity+SteamVR+云技术+5G+AI】,这个只是一个引子,抛砖引玉让大家对整个知识体系有一个明确的落地方向,宝宝们可以根据自己的兴趣方向进行拓展:比如Unity这里是指一种“3D游戏引擎”,也可拓展至“UE4、Cocos2dx”等游戏引擎;SteamVR是一种跨硬件解决方案,也可拓展至“VRTK”等第三方插件;“云技术+5G”是一种跨平台解决方案的核心技术,同样可拓展至其他平台解决方案;AI也是一种先进技术的举例,也可以拓展至任何一种前沿技术; |
++++【Unity API】分类:https://blog.csdn.net/vrunsoftyanlz/category_7637520.html
++++【Unity开发基础】分类:https://blog.csdn.net/vrunsoftyanlz/category_7309057.html
++++【Linux系统编程】分类:https://blog.csdn.net/vrunsoftyanlz/category_9694767.html
++++【C++C铸就生存利器】分类:https://blog.csdn.net/vrunsoftyanlz/category_9325802.html
++++【人工智能AI2026】分类:https://blog.csdn.net/vrunsoftyanlz/category_9212024.html
++++【立钻哥哥CSDN空间】:https://blog.csdn.net/VRunSoftYanlz/
#Debug调试 |
#Debug调试++A1、Description描述++B2、Variables变量++C3、Public Function共有函数++D4、Message消息 |
#A1、Description描述 |
#B2、Static Variables静态变量 |
++B2、Static Variables静态变量++++B2.1、developerConsoleVisible++++B2.2、isDebugBuild++++B2.3、logger++++B2.4、YanlzXREngine.Debug.StaticVariables |
++B2.1、developerConsoleVisible |
public static bool developerConsoleVisible; |
++++打开或关闭调试控制台;
++B2.2、isDebugBuild |
public static bool isDebugBuild; |
++++在Build Settings对话框中有一个叫做“Development Build”复选框;
++++如果是检查isDebugBuild将是正确的;在编辑器中isDebugBuild总是返回true;当开发一个游戏时建议删除所有的调用调试,这样可以很容易的部署测试构建调试打印并最终构建;
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{
void MyTestFunc(){ if(Debug.isDebugBuild){ Debug.Log(“立钻哥哥:This is a debug build!”); } //立钻哥哥:if(){} } //立钻哥哥:void MyTestFunc(){}
} //立钻哥哥:public class YanlzDebug{} |
++B2.3、logger |
public static ILogger logger; |
++++获取默认的调试日志;
++++Unity控制台的日志消息使用默认日志记录器;
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{ private static ILogger logger = Debug.logger; private static string kTAG = “MyGameTag”;
void MyGameMethod(){ logger.Log(kTAG, “Hello”);
Debug.logger.Log(KTAG, “World”);
} //立钻哥哥:void MyGameMethod(){}
} //立钻哥哥:public class YanlzDebug{} |
#C3、Static Functions静态函数 |
++C3、Static Functions静态函数++++C3.1、Assert++++C3.2、AssertFormat++++C3.3、Break++++C3.4、ClearDeveloperConsole++++C3.5、DrawLine++++C3.6、DrawRay++++C3.7、Log++++C3.8、LogAssertion++++C3.9、LogAssertionFormat++++C3.10、LogError++++C3.11、LogErrorFormat++++C3.12、LogException++++C3.13、LogFormat++++C3.14、LogWarning++++C3.15、LogWarningFormat++++C3.16、YanlzXREngine.Debug.StaticFunctions |
++C3.1、Assert |
public static void Asset(bool condition);public static void Asset(bool condition, Object context);public static void Asset(bool condition, object message);public static void Asset(bool condition, object message, Object context); |
++++[condition]:Condition you expect to be true;
++++[context]:Object to which the message applies;
++++[message]:String or object to be converted to string representation for display;
++++断言一个条件,当条件为false时输出格式化的错误信息到Unity控制台;
++++LogType.Assert类型信息的记录;
++C3.2、AssertFormat |
public static void AssertFormat(bool condition, string format, params object[] args);public static void AssertFormat(bool condition, Object context, string format, params object[] args); |
++++[condition]:Condition you expect to be true;
++++[format]:A composite format string;
++++[args]:Format arguments;
++++[context]:Object to which the message applies;
++++断言一个条件,当条件为false时输出格式化的错误信息到Unity控制台;
++C3.3、Break |
public static void Break(); |
++++暂停编辑器;
++++当想要在面板上检查某些值而不能暂停的时候,该函数是有用的;
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{
void MyTestFunc(){ Debug.Break(); } //立钻哥哥:void MyTestFunc(){}
} //立钻哥哥:public class YanlzDebug{} |
++C3.4、ClearDeveloperConsole |
public static void ClearDeveloperConsole(); |
++++清除开发人员控制台的错误;
++C3.5、DrawLine |
public static void DrawLine(Vector3 start, Vector3 end, Color color=Color.white, float duration=0.0f, bool depthTest=true); |
++++[start]:Point in world space where the line should start;
++++[end]:Point in world space where the line should end;
++++[color]:Color of the line;
++++[duration]:How long the line should be visible for;
++++[depthTest]:Should the line be obscured by objects closer to the camera;
++++在指定的起点与终点之间画条线;
++++该线条将会显示在编辑器窗口的场景中;如果在游戏视窗打开绘画线框,该线条也会被画在该视图;在可持续的时间内(以秒为单位)该线将在第一次显示后可见;duration值为0表示该线仅显示一帧可见;
++++注意:这仅供调试;编辑线框用Gizmos.Drawline或Handles.DrawLine代替该方法;
++++[Gizmos]:
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{
void Update(){ Debug.DrawLine(Vector3.zero, new Vector3(1, 0, 0), Color.red); } //立钻哥哥:void Update(){}
} //立钻哥哥:public class YanlzDebug{}
|
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{
void OnCollisionEnter(Collision collision){ foreach(ContactPoint contact in collision.contacts){ Debug.DrawLine(contact.point, contact.point + contact.normal, Color.green, 2, false); } //立钻哥哥:foreach(){} } //立钻哥哥:void OnCollisionEnter(){}
} //立钻哥哥:public class YanlzDebug{} |
++C3.6、DrawRay |
public static void DrawRay(Vector3 start, Vector3 dir, Color color=Color.white, float duration=0.0f, bool depthTest=true); |
++++[start]:Point in world space where the ray should start;
++++[end]:Direction and length of the ray;
++++[color]:Color of the drawn line;
++++[duration]:How long the line will be visible for(in seconds);
++++[depthTest]:Should the line be obscured by other objects closer to the camera;
++++在世界空间中画条射线,从起点开始向指向的方向延伸;
++++duration参数决定了在此帧中该射线多长可见;如果duration的值为零(默认为零)该射线被渲染一帧;
++++如果depthTest被设置为true,那么场景中物体将会靠近摄像机;
++++该线将会在编辑器视图中画出;如果游戏视图打开绘图线框,在该视图中该线将会被可见;
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{
void Update(){ Vector3 forward = transform.TransformDirection(Vector3.forward) * 10; Debug.DrawRay(transform.position, forward, Color.green); } //立钻哥哥:void Update(){}
} //立钻哥哥:public class YanlzDebug{}
|
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{
void OnCollisionEnter(Collision collision){ foreach(ContactPoint contact in collision.contacts){ //Debug.DrawLine(contact.point, contact.point + contact.normal, Color.green, 2, false); Debug.DrawLine(contact.point, contact.normal, Color.green, 2, false); } //立钻哥哥:foreach(){} } //立钻哥哥:void OnCollisionEnter(){}
} //立钻哥哥:public class YanlzDebug{} |
++C3.7、Log |
public static void Log(object message);public static void Log(object message, Object contex); |
++++[message]:String or object to be converted to string representation for display;
++++[context]:Object to which the message applies;
++++Unity控制台的日志信息;
++++当在控制台选择该信息时连接的上下的对象将会显示出来;这可被用于定位错误发生的位置;
++++当该信息是字符串,可以添加富文本标记强调;
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{
void MyGameMethod(){ //Message with a link to an object. Debug.Log(“立钻哥哥:Hello”, gameObject);
//Message using rich text. Debug.Log(“ } //立钻哥哥:void MyGameMethod(){}
} //立钻哥哥:public class YanlzDebug{} |
++C3.8、LogAssertion |
public static void LogAssetion(object message);public static void LogAssetion(object message, Object context); |
++++[message]:String or object to be converted to string representation for display;
++++[context]:Object to which the message applies;
++++将断言信息记录到控制台的不同的Debug.Log;
++++记录LogType.Assert的信息类型;
++C3.9、LogAssertionFormat |
public static void LogAssertionFormat(string format, params object[] args);public static void LogAssertionFormat(Object context, string format, params object[] args); |
++++[format]:A composite format string;
++++[args]:Format arguments;
++++[context]:Object to which the message applies;
++++Unity控制器记录的断言格式信息;
++C3.10、LogError |
public static void LogError(object message);public static void LogError(object message, Object context); |
++++[message]:String or object to be converted to string representation for display;
++++[context]:Object to which the message applies;
++++Debug.Log的一个变体,记录了控制台的错误信息;
++++当选中控制台的信息连接的上下物体将会显示;当想知道哪个物体发生错误时这非常有用;
++++当该信息是字符串时,可以使用添加富文本标签标记;
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{
void MyGameMethod(){ private Transform transform;
void MyGameMethod(){ if(transform == null){ Debug.LogError(“立钻哥哥:memberVariable must be set to point to a Transform.”, transform); } //立钻哥哥:if(){} } //立钻哥哥:void MyGameMethod(){}
} //立钻哥哥:void MyGameMethod(){}
} //立钻哥哥:public class YanlzDebug{} |
++C3.11、LogErrorFormat |
public static void LogAssertionFormat(string format, params object[] args);public static void LogAssertionFormat(Object context, string format, params object[] args); |
++++[format]:A composite format string;
++++[args]:Format arguments;
++++[context]:Object to which the message applies;
++++记录Unity控制台的断言信息格式;
++C3.12、LogException |
public static void LogException(Exception exception);public static void LogException(Exception exception, Object context); |
++++[context]:Object to which the message applies;
++++[exception]:Runtime Exception;
++++Debug.Log的一个变体,记录了控制台的错误信息;
++++当选中控制台中的信息连接的上下物体将会显示出来;如果想知道哪个物体发生错误时该方法非常有用;
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{
void MyGameMethod(){
try{ //立钻哥哥:Do something that can throw an exception. }catch(Exception e){ Debug.LogException(e, this); } //立钻哥哥:try(){}catch(){}
} //立钻哥哥:void MyGameMethod(){}
} //立钻哥哥:public class YanlzDebug{} |
++C3.13、LogFormat |
public static void LogFormat(string format, params object[] args);public static void LogFormat(Object context, string format, params object[] args); |
++++[format]:A composite format string;
++++[args]:Format arguments;
++++[context]:Object to which the message applies;
++++记录Unity控制台的信息格式;
++C3.14、LogWarning |
public static void LogWarning(object message);public static void LogWarning(object message, Object context); |
++++[message]:String or object to be converted to string representation for display;
++++[context]:Object to which the message applies;
++++Debug.Log的一个变体,记录了控制台的警告信息;
++++当选中控制台的信息连接的上下物体将会显示;当想知道哪个物体发生错误时这非常有用;
++++当该信息是字符串时,可以使用添加富文本标签标记;
using UnityEngine; using System.Collections; using YanlzXREngine;
public class YanlzDebug : MonoBehaviour{
void MyGameMethod(){ private Transform transform;
void MyGameMethod(){ if(transform == null){ //Debug.LogError(“立钻哥哥:memberVariable must be set to point to a Transform.”, transform); Debug.LogWarning(“立钻哥哥:A warning assigned to this transform!”, transform);
} //立钻哥哥:if(){} } //立钻哥哥:void MyGameMethod(){}
} //立钻哥哥:void MyGameMethod(){}
} //立钻哥哥:public class YanlzDebug{} |
++C3.15、LogWarningFormat |
public static void LogWarningFormat(string format, params object[] args);public static void LogWarningFormat(Object context, string format, params object[] args); |
++++[format]:A composite format string;
++++[args]:Format arguments;
++++[context]:Object to which the message applies;
++++Unity控制台记录的警告信息的格式;
#D4、立钻哥哥对Debug类的拓展 |
++++【Unity API】分类:https://blog.csdn.net/vrunsoftyanlz/category_7637520.html
++++【Unity开发基础】分类:https://blog.csdn.net/vrunsoftyanlz/category_7309057.html
++++【Linux系统编程】分类:https://blog.csdn.net/vrunsoftyanlz/category_9694767.html
++++【C++C铸就生存利器】分类:https://blog.csdn.net/vrunsoftyanlz/category_9325802.html
++++【人工智能AI2026】分类:https://blog.csdn.net/vrunsoftyanlz/category_9212024.html
++++【立钻哥哥CSDN空间】:https://blog.csdn.net/VRunSoftYanlz/
立钻哥哥推荐的拓展学习链接(Link_Url) |
++++立钻哥哥Unity 学习空间: http://blog.csdn.net/VRunSoftYanlz/
++++虚拟现实VR资讯: https://blog.csdn.net/VRunSoftYanlz/article/details/89165846
++++HTC_VIVE开发基础:https://blog.csdn.net/VRunSoftYanlz/article/details/81989970
++++Oculus杂谈:https://blog.csdn.net/VRunSoftYanlz/article/details/82469850
++++Oculus安装使用:https://blog.csdn.net/VRunSoftYanlz/article/details/82718982
++++Unity+SteamVR=>VR:https://blog.csdn.net/VRunSoftYanlz/article/details/88809370
++++Unity减少VR晕眩症:https://blog.csdn.net/VRunSoftYanlz/article/details/89115518
++++SteamVR简介:https://blog.csdn.net/VRunSoftYanlz/article/details/86484254
++++SteamVR脚本功能分析:https://blog.csdn.net/VRunSoftYanlz/article/details/86531480
++++SteamVR2.0开发指南:https://blog.csdn.net/VRunSoftYanlz/article/details/86618187
++++SteamVR2.2.0开发指南:https://blog.csdn.net/VRunSoftYanlz/article/details/88784527
++++SteamVR2.2.0快速入门:https://blog.csdn.net/VRunSoftYanlz/article/details/88833579
++++SteamVR2.2.0交互系统:https://blog.csdn.net/VRunSoftYanlz/article/details/89199778
++++SteamVR2.2.0传送机制:https://blog.csdn.net/VRunSoftYanlz/article/details/89390866
++++SteamVR2.2.0教程(一):https://blog.csdn.net/VRunSoftYanlz/article/details/89324067
++++SteamVR2.2.0教程(二):https://blog.csdn.net/VRunSoftYanlz/article/details/89894097
++++SteamVR_Skeleton_Poser:https://blog.csdn.net/VRunSoftYanlz/article/details/89931725
++++SteamVR实战之PMCore:https://blog.csdn.net/VRunSoftYanlz/article/details/89463658
++++SteamVR/Extras:https://blog.csdn.net/VRunSoftYanlz/article/details/86584108
++++SteamVR/Input:https://blog.csdn.net/VRunSoftYanlz/article/details/86601950
++++OpenXR简介:https://blog.csdn.net/VRunSoftYanlz/article/details/85726365
++++VRTK杂谈:https://blog.csdn.net/VRunSoftYanlz/article/details/82562993
++++VRTK快速入门(杂谈):https://blog.csdn.net/VRunSoftYanlz/article/details/82955267
++++VRTK官方示例(目录):https://blog.csdn.net/VRunSoftYanlz/article/details/82955410
++++VRTK代码结构(目录):https://blog.csdn.net/VRunSoftYanlz/article/details/82780085
++++VRTK(SceneResources):https://blog.csdn.net/VRunSoftYanlz/article/details/82795400
++++VRTK_ControllerEvents:https://blog.csdn.net/VRunSoftYanlz/article/details/83099512
++++VRTK_InteractTouch:https://blog.csdn.net/VRunSoftYanlz/article/details/83120220
++++虚拟现实行业应用:https://blog.csdn.net/VRunSoftYanlz/article/details/88360157
++++Steam平台上的VR:https://blog.csdn.net/VRunSoftYanlz/article/details/88960085
++++Steam平台热销VR:https://blog.csdn.net/VRunSoftYanlz/article/details/89007741
++++VR实验:以太网帧的构成:https://blog.csdn.net/VRunSoftYanlz/article/details/82598140
++++实验四:存储器扩展实验:https://blog.csdn.net/VRunSoftYanlz/article/details/87834434
++++FrameVR示例V0913:https://blog.csdn.net/VRunSoftYanlz/article/details/82808498
++++FrameVR示例V1003:https://blog.csdn.net/VRunSoftYanlz/article/details/83066516
++++SwitchMachineV1022:https://blog.csdn.net/VRunSoftYanlz/article/details/83280886
++++PlaySceneManagerV1022:https://blog.csdn.net/VRunSoftYanlz/article/details/83280886
++++Unity5.x用户手册:https://blog.csdn.net/VRunSoftYanlz/article/details/81712741
++++Unity面试题ABC:https://blog.csdn.net/vrunsoftyanlz/article/details/78630687
++++Unity面试题D:https://blog.csdn.net/VRunSoftYanlz/article/details/78630838
++++Unity面试题E:https://blog.csdn.net/vrunsoftyanlz/article/details/78630913
++++Unity面试题F:https://blog.csdn.net/VRunSoftYanlz/article/details/78630945
++++Cocos2dx面试题:https://blog.csdn.net/VRunSoftYanlz/article/details/78630967
++++禅道[zentao]:https://blog.csdn.net/VRunSoftYanlz/article/details/83964057
++++Lua快速入门篇(Xlua拓展):https://blog.csdn.net/VRunSoftYanlz/article/details/81173818
++++Lua快速入门篇(XLua教程):https://blog.csdn.net/VRunSoftYanlz/article/details/81141502
++++Lua快速入门篇(基础概述):https://blog.csdn.net/VRunSoftYanlz/article/details/81041359
++++框架知识点:https://blog.csdn.net/VRunSoftYanlz/article/details/80862879
++++游戏框架(UI框架夯实篇):https://blog.csdn.net/vrunsoftyanlz/article/details/80781140
++++游戏框架(初探篇):https://blog.csdn.net/VRunSoftYanlz/article/details/80630325
++++.Net框架设计:https://blog.csdn.net/VRunSoftYanlz/article/details/87401225
++++从零开始学架构:https://blog.csdn.net/VRunSoftYanlz/article/details/88095895
++++设计模式简单整理:https://blog.csdn.net/vrunsoftyanlz/article/details/79839641
++++专题:设计模式(精华篇):https://blog.csdn.net/VRunSoftYanlz/article/details/81322678
++++U3D小项目参考:https://blog.csdn.net/vrunsoftyanlz/article/details/80141811
++++Unity小游戏算法分析:https://blog.csdn.net/VRunSoftYanlz/article/details/87908365
++++Unity案例(Vehicle):https://blog.csdn.net/VRunSoftYanlz/article/details/82355876
++++UML类图:https://blog.csdn.net/vrunsoftyanlz/article/details/80289461
++++PowerDesigner简介:https://blog.csdn.net/VRunSoftYanlz/article/details/86500084
++++Unity知识点0001:https://blog.csdn.net/vrunsoftyanlz/article/details/80302012
++++Unity知识点0008:https://blog.csdn.net/VRunSoftYanlz/article/details/81153606
++++U3D_Shader编程(第一篇:快速入门篇):https://blog.csdn.net/vrunsoftyanlz/article/details/80372071
++++U3D_Shader编程(第二篇:基础夯实篇):https://blog.csdn.net/vrunsoftyanlz/article/details/80372628
++++Unity引擎基础:https://blog.csdn.net/vrunsoftyanlz/article/details/78881685
++++Unity面向组件开发:https://blog.csdn.net/vrunsoftyanlz/article/details/78881752
++++Unity物理系统:https://blog.csdn.net/vrunsoftyanlz/article/details/78881879
++++Unity2D平台开发:https://blog.csdn.net/vrunsoftyanlz/article/details/78882034
++++UGUI基础:https://blog.csdn.net/vrunsoftyanlz/article/details/78884693
++++UGUI进阶:https://blog.csdn.net/vrunsoftyanlz/article/details/78884882
++++UGUI综合:https://blog.csdn.net/vrunsoftyanlz/article/details/78885013
++++Unity动画系统基础:https://blog.csdn.net/vrunsoftyanlz/article/details/78886068
++++Unity动画系统进阶:https://blog.csdn.net/vrunsoftyanlz/article/details/78886198
++++Navigation导航系统:https://blog.csdn.net/vrunsoftyanlz/article/details/78886281
++++Unity特效渲染:https://blog.csdn.net/vrunsoftyanlz/article/details/78886403
++++Unity数据存储:https://blog.csdn.net/vrunsoftyanlz/article/details/79251273
++++Unity中Sqlite数据库:https://blog.csdn.net/vrunsoftyanlz/article/details/79254162
++++WWW类和协程:https://blog.csdn.net/vrunsoftyanlz/article/details/79254559
++++Unity网络:https://blog.csdn.net/vrunsoftyanlz/article/details/79254902
++++Unity资源加密:https://blog.csdn.net/VRunSoftYanlz/article/details/87644514
++++PhotonServer简介:https://blog.csdn.net/VRunSoftYanlz/article/details/86652770
++++编写Photon游戏服务器:https://blog.csdn.net/VRunSoftYanlz/article/details/86682935
++++C#事件:https://blog.csdn.net/vrunsoftyanlz/article/details/78631267
++++C#委托:https://blog.csdn.net/vrunsoftyanlz/article/details/78631183
++++C#集合:https://blog.csdn.net/vrunsoftyanlz/article/details/78631175
++++C#泛型:https://blog.csdn.net/vrunsoftyanlz/article/details/78631141
++++C#接口:https://blog.csdn.net/vrunsoftyanlz/article/details/78631122
++++C#静态类:https://blog.csdn.net/vrunsoftyanlz/article/details/78630979
++++C#中System.String类:https://blog.csdn.net/vrunsoftyanlz/article/details/78630945
++++C#数据类型:https://blog.csdn.net/vrunsoftyanlz/article/details/78630913
++++Unity3D默认的快捷键:https://blog.csdn.net/vrunsoftyanlz/article/details/78630838
++++游戏相关缩写:https://blog.csdn.net/vrunsoftyanlz/article/details/78630687
++++UnityAPI.Rigidbody刚体:https://blog.csdn.net/VRunSoftYanlz/article/details/81784053
++++UnityAPI.Material材质:https://blog.csdn.net/VRunSoftYanlz/article/details/81814303
++++UnityAPI.Android安卓:https://blog.csdn.net/VRunSoftYanlz/article/details/81843193
++++UnityAPI.AndroidJNI安卓JNI:https://blog.csdn.net/VRunSoftYanlz/article/details/81879345
++++UnityAPI.Transform变换:https://blog.csdn.net/VRunSoftYanlz/article/details/81916293
++++UnityAPI.WheelCollider轮碰撞器:https://blog.csdn.net/VRunSoftYanlz/article/details/82356217
++++UnityAPI.Resources资源:https://blog.csdn.net/VRunSoftYanlz/article/details/83155518
++++JSON数据结构:https://blog.csdn.net/VRunSoftYanlz/article/details/82026644
++++CocosStudio快速入门:https://blog.csdn.net/VRunSoftYanlz/article/details/82356839
++++Unity企业内训(目录):https://blog.csdn.net/VRunSoftYanlz/article/details/82634668
++++Unity企业内训(第1讲):https://blog.csdn.net/VRunSoftYanlz/article/details/82634733
++++Unity企业内训(第2讲):https://blog.csdn.net/VRunSoftYanlz/article/details/82861180
++++Unity企业内训(第3讲):https://blog.csdn.net/VRunSoftYanlz/article/details/82927699
++++Unity企业内训(第4讲):https://blog.csdn.net/VRunSoftYanlz/article/details/83479776
++++Unity企业内训(第5讲):https://blog.csdn.net/VRunSoftYanlz/article/details/83963811
++++Unity企业内训(第6讲):https://blog.csdn.net/VRunSoftYanlz/article/details/84207696
++++钻哥带您了解产品原型:https://blog.csdn.net/VRunSoftYanlz/article/details/87303828
++++插件
++++计算机组成原理(教材篇):https://blog.csdn.net/VRunSoftYanlz/article/details/82719129
++++5G接入:云计算和雾计算:https://blog.csdn.net/VRunSoftYanlz/article/details/88372718
++++云计算通俗讲义:https://blog.csdn.net/VRunSoftYanlz/article/details/88652803
++++立钻哥哥Unity 学习空间: http://blog.csdn.net/VRunSoftYanlz
--_--VRunSoft:lovezuanzuan--_--
--_--VRunSoft:lovezuanzuan--_--