
关于百度sdk-接入
高飞coding
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
unity 最近在做有关接入百度的人脸比对的项目
我用的是百度的c# sdk (使用百度api的请忽略,咱们不是一个思路),但是把sdk接入后,将参数配置好后,报错:WebException: Error writing request: The authentication or decryption has failed. TLSException解决方案: 在访问百度的api之前请先进行授权,我现在的解决方案是用一个非常愚蠢的策略覆盖证翻译 2017-08-14 15:52:21 · 1119 阅读 · 0 评论 -
unity 关于assetbundle 打包和加载的方法
先说打包assetbundle 的方法: 首先将prefab相关的材质和贴图均打入同一个包中,在inspector面板的最下面 ,有个assetbundle,将名字写好即可然后在project下建立Editor文件夹,创建一个脚本并写代码如下 [MenuItem(“Window/Build AssetBundles”)] static void BuildAllAssetBundle原创 2017-08-15 15:10:32 · 2294 阅读 · 0 评论 -
uniy3D,实现改变一条像素点的功能 并存为png图
Color[] colors = new Color[tex.width / 2]; tex.SetPixels(tex.width / 2, tex.height / 2, tex.width / 2, 1, colors); tex.SetPixels(tex.width / 2, tex.height / 2, 1, tex.height / 2, colo原创 2017-09-19 16:20:29 · 431 阅读 · 0 评论