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 阅读(7) 评论(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 阅读(10) 评论(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 阅读(5) 评论(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 阅读(3) 评论(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 阅读(21) 评论(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 阅读(6) 评论(0) 推荐(0) 编辑

2024年9月27日

Unsupported D3D format 0x58

摘要: AVPro Video 1.9.17b.改成这个版本,删掉之前的,不影响 阅读全文

posted @ 2024-09-27 17:03 zqiang0803 阅读(14) 评论(0) 推荐(0) 编辑

2024年8月1日

Unity中调试Scroll View,一个Scroll View可以加载不同的图片

摘要: 1.所有的图片宽度要相同(最好) 2.锚点设置 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class ScrollImageS 阅读全文

posted @ 2024-08-01 09:35 zqiang0803 阅读(8) 评论(0) 推荐(0) 编辑

2024年7月22日

Unity5.6版本 加载本地音乐

摘要: using UnityEngine; using UnityEngine.UI; using System.Collections; public class LoadAudio : MonoBehaviour { public string audioPath; // 本地音频文件的路径 publ 阅读全文

posted @ 2024-07-22 11:26 zqiang0803 阅读(13) 评论(0) 推荐(0) 编辑

2024年7月15日

Unity doTween Text 动画滚动

摘要: void InvkoeFun() { _widthText = cueText.GetComponent<RectTransform>().rect.width; _dirtion = cueText.transform.position.x - (_widthText - _widthMask)- 阅读全文

posted @ 2024-07-15 14:34 zqiang0803 阅读(20) 评论(0) 推荐(0) 编辑

导航