摘要: The .sbsasm file can be copied out of the SubstanceArchive. Export it raw and delete everything before "SBAM" in a hex editor. The only issue is the . 阅读全文
posted @ 2024-07-06 09:38 opencoder 阅读(9) 评论(0) 推荐(0) 编辑
摘要: chmod a+x ./MapFileParser.sh 操作如下: 阅读全文
posted @ 2024-05-25 15:50 opencoder 阅读(11) 评论(0) 推荐(0) 编辑
摘要: svn sudo nano /etc/apache2/mods-available/dav_svn.conf sudo systemctl restart apache2.service smb sudo nano /etc/samba/smb.conf sudo service smbd rest 阅读全文
posted @ 2024-05-06 11:23 opencoder 阅读(3) 评论(0) 推荐(0) 编辑
摘要: Unity5 APIUpdater encountered some issues and was not able to finish. Ran the updater, then searched the editor log for "upgradable" or "UnityUpgradab 阅读全文
posted @ 2024-02-15 11:12 opencoder 阅读(9) 评论(0) 推荐(0) 编辑
摘要: // Upgrade NOTE: replaced '_Projector' with 'unity_Projector' // Upgrade NOTE: replaced '_ProjectorClip' with 'unity_ProjectorClip' Shader "Projector/ 阅读全文
posted @ 2023-12-31 11:00 opencoder 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Shader "ZX/BaseVertFragmentShadow" { Properties { _DiffuseTexture ("Diffuse Texture", 2D) = "white" {} _DiffuseTint ( "Diffuse Tint", Color) = (1, 1, 阅读全文
posted @ 2023-12-31 10:57 opencoder 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 手机连接wifi后显示叹号:网络受限, 参考地址 , 开启飞行模式下,执行以下命令。 adb shell settings delete global captive_portal_https_url adb shell settings delete global captive_portal_h 阅读全文
posted @ 2023-12-31 10:52 opencoder 阅读(91) 评论(0) 推荐(0) 编辑
摘要: d2j-dex2jar.bat 把.apk文件拖到d2j-dex2jar.bat上,则会把该apk文件中的dex转换为一个.jar包,然后就可以用jd-gui之类的工具查看源代码了 apktool 用apktool解包 , 解包后可以对java字节码代码进行修改,修改跳转流程、返回值、临时变量的的值 阅读全文
posted @ 2023-12-31 10:39 opencoder 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 解决方案: 根据构建报错信息 "31.0.0版本的构建工具缺少了DX文件" 发现,31.0.0版本的构建工具缺少了"dx.bat"和"dx.jar"这两文件,正确的做法就是复制对应路径的"d8.bat"和"d8.jar"这两文件创建副本,并分别改名为"dx.bat"和"dx.jar"【该方法同样适用 阅读全文
posted @ 2023-12-31 10:27 opencoder 阅读(514) 评论(0) 推荐(0) 编辑
摘要: 问题:Android studio使用时,报错出现提示乱码问题,无法查看具体报错问题,如图 解决方法: 可点击studio状态栏的 Help —> Edit Custom VM Options ,操作如下图 在文件后面添加 -Dfile.encoding=UTF-8 (要注意不能有空格,否则stud 阅读全文
posted @ 2023-12-31 10:20 opencoder 阅读(476) 评论(0) 推荐(1) 编辑