- 博客(5)
- 收藏
- 关注
原创 Vuforia出现 SetStereoProjectionMatrices方法已过时
最近碰到Vuforia 发布android时候出现SetStereoProjectionMatrices 方法过时的问题【注】:如果项目中出现如下错误: Assets/Vuforia/Scripts/Utilities/VRIntegrationHelper.cs(108,29): error CS1061: Type UnityEngine.Camera' does not contain ...
2018-10-24 11:41:16
1103
原创 Android Studio Gradle build finished with 1 error(s) in 3s 721ms
Gradle build finished with 1 error(s) in 3s 721ms 原因导入的工程的工具跟你现在as里边的tool版本不支持 如果知道你需要更新哪个tools更新你需要的 不知道到 全部更新就可以
2017-03-13 16:28:24
15648
原创 Lua——table.insert
table.insert(table,index,value) 在table 表中指定的index位置插入value index 可以不传入值, 默认为最后一位tables = {"a", "b", "c", "d" }table.insert(tables, "e")print(unpack(tables))-- a b c d etable.insert(tables
2017-03-09 13:36:32
25106
原创 Lua——unpack
unpack 会把table 中的得数据根据下表返回出整个table中的数据arr = {"a" ,"b", "c", "d", "e"};print(unpack(arr))print(unpack(arr,2))print(unpack(arr,5))--print is -- a b c d e b c d e e-- 2 , 5 就代表
2017-03-09 13:25:43
3257
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅