销毁物体:Destroy、DestroyImmediate、DestroyObject
摘要:原文链接:https://blog.csdn.net/NCZ9_/article/details/84203714 参考链接:https://blog.csdn.net/lee514/article/details/80995048 方法一:GameObject.Destroy(游戏物体(gameO
阅读全文
lua返回table最大值
摘要:table.maxn (table) 指定table中所有正数key值中最大的key值. 如果不存在key值为正数的元素, 则返回0。 math.max(unpack(testTable)) testTable为表名 math.min(unpack(testTable))
阅读全文
模拟器端口
摘要:夜神模拟器:adb connect 127.0.0.1:62001逍遥安卓模拟器: adb connect 127.0.0.1:21503天天模拟器:adb connect 127.0.0.1:6555海马玩模拟器 :adb connect 127.0.0.1:53001网易MUMU模拟器:adb
阅读全文
VS2019或者VSCode中“Ctrl+Shift+F”快捷键无法使用
摘要:Ctrl+Shift+F 快捷键与其他软件的快捷键冲突 1.win10输入法设置->关闭简/繁体字切换热键 2.Everything的全局搜索快捷键
阅读全文
判断table是否为空
摘要:if next(a) == nil then end
阅读全文