摘要:
print("a"); print("\b"); --back space 空格 print("b"); print("\f"); --from feed填充表格 print("\n"); --new line换行 print("\r"); --carriage reurn返回当前行第一列 prin 阅读全文
摘要:
原文地址: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并不 阅读全文