上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页

2022年8月24日

AS3.0 画线的时候影片简介播放会卡

摘要: e.updateAfterEvent(); 这个是一直画线线条,线条是不卡了,但是影片简介会卡 阅读全文

posted @ 2022-08-24 14:33 zqiang0803 阅读(11) 评论(0) 推荐(0) 编辑

2022年8月4日

AS3.0 颜色渐变

摘要: package { import flash.display.*; import flash.display.Stage; import flash.display.Sprite; import flash.display.Graphics; import flash.display.Gradien 阅读全文

posted @ 2022-08-04 16:42 zqiang0803 阅读(66) 评论(0) 推荐(0) 编辑

2022年6月28日

unity 给当鼠标按下按钮的时候批量赋值

摘要: IEnumerator GetTextureStop(Transform myTf, List<string> myList) { for (int i = 0; i < myTf.childCount; i++) { UnityWebRequest uwr = UnityWebRequest.Ge 阅读全文

posted @ 2022-06-28 16:54 zqiang0803 阅读(107) 评论(0) 推荐(0) 编辑

2022年6月27日

Unity 发布Android时候读取 StreamingAssets 的路径

摘要: myList.Add("jar:file://" + Application.dataPath + "!/assets/GuanLiKeTi/" + transform.name + "/"+ pathStr + "/" + "a" + i + ".jpg"); 阅读全文

posted @ 2022-06-27 20:04 zqiang0803 阅读(504) 评论(0) 推荐(0) 编辑

2022年6月17日

Unity 批量动态添加图片,可后台替换

摘要: string filePath = Application.streamingAssetsPath + "/"+ str; if (Directory.Exists(filePath)) {//判断这个路径是否存在 DirectoryInfo direction = new DirectoryInf 阅读全文

posted @ 2022-06-17 17:21 zqiang0803 阅读(185) 评论(0) 推荐(0) 编辑

2022年6月14日

Unity 加载序列图

摘要: using UnityEngine; using UnityEngine.UI; public class FrameAnimatorPlayScript:MonoBehaviour { /// <summary> /// 序列帧帧数 /// </summary> private int _fram 阅读全文

posted @ 2022-06-14 11:03 zqiang0803 阅读(374) 评论(0) 推荐(0) 编辑

2022年6月8日

Unity 不规则按钮点击

摘要: GetComponent<Image>().alphaHitTestMinimumThreshold = 0.1f; 阅读全文

posted @ 2022-06-08 09:59 zqiang0803 阅读(29) 评论(0) 推荐(0) 编辑

2022年6月3日

AS3.0 班级姓名,用时,得分 按照顺序排序

摘要: var arr:Array=[{name:"d",core:10,times:1},{name:"a",core:20,times:1},{name:"d",core:30,times:7}] arr.push ({name:"3",core:50,times:3}) arr.sortOn(["ti 阅读全文

posted @ 2022-06-03 13:40 zqiang0803 阅读(36) 评论(0) 推荐(0) 编辑

2022年5月16日

Unity 算盘制作过程

摘要: using System.Collections; using System.Collections.Generic; using UnityEngine; using DG.Tweening; public class Operation: MonoBehaviour { public GameO 阅读全文

posted @ 2022-05-16 13:44 zqiang0803 阅读(368) 评论(0) 推荐(0) 编辑

2022年5月5日

Unity 沿Y轴拖动 移动UI

摘要: Vector3 pos = sender. transform.localPosition;//pos并非引用。 pos.y += delta.y; sender.transform.localPosition = pos; 阅读全文

posted @ 2022-05-05 16:28 zqiang0803 阅读(130) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 19 下一页

导航