摘要: 先新建一个TimeLine 添加Track using SLSC.LBE; using System; using UnityEngine; using UnityEngine.Playables; public class TestCubeReceiver :MonoBehaviour,INoti 阅读全文
posted @ 2025-09-10 17:09 WalkingSnail 阅读(12) 评论(0) 推荐(0)
摘要: List<string> list = new List<string>() { "1111", "22222", "3333", }; List<string> list2 = new List<string>() { "1", "2", "3", "1111", }; List<string> 阅读全文
posted @ 2025-09-09 18:19 WalkingSnail 阅读(13) 评论(0) 推荐(0)
摘要: 分支的意义就是保证每个分支独立性,主干是完整最新代码; 例如要更新Vl.0.0 MOCA分支内容,应该现将当前改动的关于MMSE代码上传提交到主干上master,在切回主分支V1.0.9改动关于moca的代码和动画,完成后,将分支内容上传提交到V1.0.9这样保证分支只有Moca代码,在将V1.0. 阅读全文
posted @ 2024-09-20 18:12 WalkingSnail 阅读(83) 评论(0) 推荐(0)
摘要: 代码: /// <summary> /// 传感器ID /// </summary> public Dictionary<string, string> SensorIDDic = new Dictionary<string, string>(); public string contents= " 阅读全文
posted @ 2024-09-11 13:43 WalkingSnail 阅读(17) 评论(0) 推荐(0)
摘要: /// <summary>/// 安全设置路径/// </summary>private string _configSavePath = "/storage/emulated/0/Android/data/com.pvr.seethrough.setting/files/config1.txt"; 阅读全文
posted @ 2024-08-19 14:50 WalkingSnail 阅读(326) 评论(0) 推荐(0)
摘要: 解决方案,设置-通用设置-定位追踪打开 阅读全文
posted @ 2024-08-19 14:49 WalkingSnail 阅读(40) 评论(0) 推荐(0)
摘要: win+R cmd+回车 cd D:\adb\platform-tools(环境变量没配置,用这种方式运行adb,如果已配置环境变量,就直接运行) d: adb devices 普通安装 adb install E:\Brainau_low\apk\BrainauTest.apk 强制安装 adb 阅读全文
posted @ 2024-08-15 10:50 WalkingSnail 阅读(11) 评论(0) 推荐(0)
摘要: 解决上传,文件大小限制 命令:git lfs install 更改文件.gitattributes *.jar filter=lfs diff=lfs merge=lfs -text *.pdf filter=lfs diff=lfs merge=lfs -text *.fbx filter=lfs 阅读全文
posted @ 2024-08-15 10:48 WalkingSnail 阅读(125) 评论(0) 推荐(0)
摘要: 为了解决字体和场景闪烁问题吗,更换渲染管线 旧项目管线是URP 新的项目管线是内置管线 build in() 内置管线需要设置两个地方,可以解决人物材质不显示问题 1.PICO-Stereo Rendering Mode 选择 Multi Pass 模式 2,Player-OtherSetting- 阅读全文
posted @ 2024-08-13 15:48 WalkingSnail 阅读(211) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using UnityEngine; using UnityEngine.XR; using QFramework; /// <summary> /// 提供各种输入事件 /// </summary> p 阅读全文
posted @ 2024-08-03 17:36 WalkingSnail 阅读(556) 评论(0) 推荐(0)