1 2 3 4 5 ··· 20 下一页

2025年8月17日

unity本地加载视频

摘要: using UnityEngine; using UnityEngine.Video; using System.IO; /// <summary> /// 视频管理器:本地视频播放(StreamingAssets) /// </summary> public class VideoManager 阅读全文

posted @ 2025-08-17 00:44 zqiang0803 阅读(17) 评论(0) 推荐(0)

Unity 本地加载视频和声音(异步加载)

摘要: using UnityEngine; using UnityEngine.Video; using UnityEngine.Networking; using System.Collections; using System.Collections.Generic; using System.IO; 阅读全文

posted @ 2025-08-17 00:03 zqiang0803 阅读(15) 评论(0) 推荐(0)

2025年8月16日

Unity加载本地音乐/声音(异步加载)

摘要: using UnityEngine; using UnityEngine.Networking; using System.Collections; using System.Collections.Generic; //内存占用 ≈ 时长(秒) × 采样率(Hz) × 声道数 × 2字节 //3 阅读全文

posted @ 2025-08-16 23:44 zqiang0803 阅读(59) 评论(0) 推荐(0)

2025年7月28日

在Pycharm里面对接CATIA报错。 print(caa.active_document)

摘要: # 卸载当前版本 pip uninstall pycatia -y # 安装已知稳定的版本(例如 0.6.1) pip install pycatia==0.6.1 阅读全文

posted @ 2025-07-28 16:45 zqiang0803 阅读(11) 评论(0) 推荐(0)

2024年11月6日

Unity 一键导出exe

摘要: using System.Collections; using System.Collections.Generic; using System.IO; using UnityEditor; using UnityEditor.Build.Reporting; using UnityEngine; 阅读全文

posted @ 2024-11-06 16:55 zqiang0803 阅读(82) 评论(0) 推荐(0)

2024年10月29日

Unity 调用外部exe

摘要: using System; using System.Diagnostics; using System.IO; using UnityEngine; public class RunExe : MonoBehaviour { public static void StartExe(string f 阅读全文

posted @ 2024-10-29 14:53 zqiang0803 阅读(130) 评论(0) 推荐(0)

Unity 滑动条 SlideView

摘要: using UnityEngine; using System.Collections; using UnityEngine.UI; public class SlideView : MonoBehaviour { public Slider slide; public Scrollbar sb; 阅读全文

posted @ 2024-10-29 14:19 zqiang0803 阅读(18) 评论(0) 推荐(0)

Unity 三级目录

摘要: using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class MenuManage : MonoBehaviour { // Star 阅读全文

posted @ 2024-10-29 14:18 zqiang0803 阅读(22) 评论(0) 推荐(0)

2024年10月19日

Unity AVPro 解决切换视频卡的问题

摘要: using System.Collections; using System.Collections.Generic; using UnityEngine; using RenderHeads.Media.AVProVideo.Demos.UI; using RenderHeads.Media.AV 阅读全文

posted @ 2024-10-19 23:50 zqiang0803 阅读(325) 评论(0) 推荐(0)

2024年10月8日

unity 摇杆

摘要: /*********************************************** EasyTouch Controls Copyright © 2016 The Hedgehog Team http://www.thehedgehogteam.com/Forum/ The.Hedge 阅读全文

posted @ 2024-10-08 17:38 zqiang0803 阅读(23) 评论(0) 推荐(0)

1 2 3 4 5 ··· 20 下一页

导航