摘要: Pattern not found破解失败是什么原因呢?主要是破解成功后再次破解及电脑上有多个版本Unity才导致破解失败,这个问题一般网上会有许多方法,比较通用的是导入证书,然而我这里是没有导入证书界面的。。so 另外找方法呗: 1.打开破解软件生成的ulf文件,2. 打开C:\ProgramDa 阅读全文
posted @ 2018-03-13 10:39 1A7487 阅读(17742) 评论(0) 推荐(0) 编辑
摘要: Unity调用Android的方法网上有许多,这里就不在赘述了,然而我们调用AndroidSDK时,一般都是继承UnityPlayerActivity,然后我们从MainActivity中启动我们的SDK。 那么问题来了,假如在一个已经添加了Unity的SDK,并且其已经继承UnityPlayerA 阅读全文
posted @ 2018-01-14 18:58 1A7487 阅读(650) 评论(0) 推荐(0) 编辑
摘要: 1 /// 2 /// 通过基类找到所有继承的子类 3 /// 4 public void Info() 5 { 6 mConditions.Clear(); 7 mConConTypes.Clear(); 8 var types = Assembly.GetCallingAssembly().G... 阅读全文
posted @ 2018-01-14 18:49 1A7487 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 虽然我们是程序员,但是无谓的编码应当能免则免,重复的工作会大大占用我们的时间。在一些情况下我们不得不需要创建许多类似的脚步,里面的结构相同,但是其功能却不一样,功能我们要自己写,但是结构等代码我们其实可以偷懒的。 阅读全文
posted @ 2018-01-14 18:36 1A7487 阅读(2096) 评论(0) 推荐(0) 编辑
摘要: 1 public void AddStates() 2 { 3 4 var subTypeQuery = from t in Assembly.GetExecutingAssembly().GetTypes() 5 where IsSubClassOf(t, typeof(Stat... 阅读全文
posted @ 2016-07-30 15:14 1A7487 阅读(2615) 评论(0) 推荐(0) 编辑
摘要: using UnityEngine; using System.Collections; using UnityEngine.UI; /// /// 主界面的三层标的显示百分比 /// public class TiaoFade : MonoBehaviour { public Text text_Name; public string name; publi... 阅读全文
posted @ 2016-04-14 08:03 1A7487 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 在每个需要排序的物体上放入GridTag 脚本 其中GridTag脚本用于提供此物体的深度 Sorting 通过GridTag 和 其中的深度值 排序 阅读全文
posted @ 2016-04-04 23:11 1A7487 阅读(125476) 评论(0) 推荐(0) 编辑
摘要: 1 /// 2 /// 在鼠标位置不同时 图片浮动效果 3 /// 4 public class TiltWindow : MonoBehaviour 5 { 6 public Vector2 range = new Vector2(5f, 3f); 7 8 Transform mTrans; 9 Quaternion mStart; 10 ... 阅读全文
posted @ 2016-04-04 23:03 1A7487 阅读(708) 评论(0) 推荐(0) 编辑
摘要: public class Divisor { private static Divisor instance; public static Divisor Instance { get {if(instance == null) instance = new Divisor(); return inst... 阅读全文
posted @ 2016-04-04 23:01 1A7487 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 先声明一下,我是在那篇文章上看到的解决方法: http://dl.download.csdn.net/down10/20141103/4b173214e41ff3207305c2470524b0f3.zip?response- content-disposition=attachment%3Bfil 阅读全文
posted @ 2016-02-08 23:04 1A7487 阅读(2491) 评论(0) 推荐(0) 编辑