摘要:
原文地址:http://lua-users.org/wiki/StringTrim 阅读全文
摘要:
链接: http://www.xuanyusong.com/archives/3325 阅读全文
摘要:
比如一些不规则按钮最好可以设置它的响应区域。如下图所示,用Polygon Collider2D组件圈出精灵响应事件的区域。 注意 IsRaycastLocationValid 的判断区域是RectTransform的区域。 如果 polygon Collider编辑出来的区域大于RectTransf 阅读全文
摘要:
1、大部分SDK的方法需要在线程中执行,一般会放在主线程里执行,安卓中主线程一般用于UI渲染。 this.runOnUiThread(new Runnable() { @Override public void run() { // TODO Auto-generated method stub } 阅读全文
摘要:
http://www.aisharing.com/ 阅读全文
摘要:
1.改变RectTransform的top GetComponent<RectTransform>().offsetMax = new Vector2(GetComponent<RectTransform>().offsetMax.x, top); 2.改变RectTransform的bottom 阅读全文
摘要:
1. string库中所有的字符索引从前往后是1,2,...;从后往前是-1,-2,...2. string库中所有的function都不会直接操作字符串,而是返回一个结果 string.byte(string [,pos]):返回第pos个字符的整数表示形式.如a为97. string.char( 阅读全文
摘要:
贴一段匹配中英文混合输入的代码 阅读全文
摘要:
Lua模式匹配 模式匹配函数在string库中功能最强大的函数是:string.find(字符串查找)string.gsub(全局字符串替换)string.gfind(全局字符串查找)string.gmatch(返回查找到字符串的迭代器)这些函数都是基于模式匹配的。与其他脚本语言不同的是,Lua并不 阅读全文
摘要:
我们知道lua中可以用".."连接字符串,可以起到一部分格式化字符串的作用,但是如果字符串较长或者有特殊的格式转换操作(如十六进制转换),用".."就会很繁琐且可读性差。用string.format()就是一个很好的解决方案。函数定义
string.format() 第一个参数为字符串格式,后面的参 阅读全文
摘要:
参考链接: https://candycat1992.github.io/ https://chengkehan.github.io/FakeLighting.html 阅读全文