摘要: Today I’d like to share with you my findings about how an existing .apk file can be modified. An .apk file represents the mobile application as it is 阅读全文
posted @ 2018-01-24 17:48 LouisSong 阅读(491) 评论(0) 推荐(0) 编辑
摘要: using UnityEngine; using System.Collections; using System.Collections.Generic; public class Cone : MonoBehaviour { public float anglefov = 30; public int quality = 2; public int[] trian... 阅读全文
posted @ 2018-01-23 21:02 LouisSong 阅读(4563) 评论(0) 推荐(0) 编辑
摘要: 转自:http://baizihan.me/2016/10/draw-sector/ 阅读全文
posted @ 2018-01-22 13:50 LouisSong 阅读(1499) 评论(0) 推荐(0) 编辑
摘要: using System.Reflection;using UnityEngine;using System.Collections;[assembly:AssemblyVersion( "1.0.*" )][RequireComponent(typeof(UnityEngine.UI.Text)) 阅读全文
posted @ 2017-11-28 14:04 LouisSong 阅读(1728) 评论(0) 推荐(0) 编辑
摘要: 转自:http://www.lai18.com/content/1398005.html 阅读全文
posted @ 2017-09-12 16:31 LouisSong 阅读(349) 评论(0) 推荐(0) 编辑
摘要: 效果: 阅读全文
posted @ 2017-09-12 16:12 LouisSong 阅读(831) 评论(0) 推荐(0) 编辑
摘要: 转自:https://gist.github.com/jimfleming/5937437 阅读全文
posted @ 2017-09-12 16:07 LouisSong 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 最近要考试数据结构了,将图的相关知识点记录下,加强记忆。1、概念:(1)无向完全图:任意两个顶点之间都存在边,边数=n*(n-1)/2.(2)有向完全图:任意两个顶点之间都存在方向互为相反的两条弧,边数=n*(n-1).(3)路径的长度:路径的边或弧的数目。2、图的存储结构:用一维数组存储顶点,用二... 阅读全文
posted @ 2015-10-18 22:07 LouisSong 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 报错信息:无法打开程序数据库“e:\newproj\mainclient\bin\windows\cpp\obj\obj\msvc-debug-ncxp\vc.pdb”;如果要将多个CL.EXE写入同一个.PDB文件,请使用/FS解决办法:1、打开C:\Users\用户名\.hxcpp_config... 阅读全文
posted @ 2015-10-13 16:58 LouisSong 阅读(788) 评论(0) 推荐(0) 编辑
摘要: 步骤:1、加载配置文件,包含文件路径,保存路径等信息2、加载本地文件,进行hash值计算3、加载上次保存的版本文件3、加载上次保存的hash值数据4、进行hash值比较,得到新的版本文件5、保存版本文件和hash值文件,完成!代码:链接: http://pan.baidu.com/s/1bnhill... 阅读全文
posted @ 2015-06-05 10:13 LouisSong 阅读(213) 评论(0) 推荐(0) 编辑