大约有 81 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0046 秒)
...overflow != Text.VISIBLE) { var func = this.overflow == Text.HIDDEN ? Math.floor : Math.ceil; lineCount = Math.min(lineCount, func((this.height - this.padding[0] - this.padding[2]) / (this.leading + this._charSize.height))); }; var startLine = this.scrollY / (this._charSize.height + this.leading) | ...
来源: Laya_社区 发布时间: 20180417
...制并排序 if(texture) { sp.graphics.drawTexture(texture,(num-1)*70,Math.floor((num-1)/10)*70+10); } } private function chageTexture():void { //如果图片的张数超出100,将不再执行 if(num>=100) { Laya.timer.clear(this,onLoop); return; } //绘制下一张图片 ++num; //拼写图集...
来源: Laya_社区 发布时间: 20161107
... (total:number,now:number,speed:number)=>{ onEvent('downloading',Math.floor((now/total)*100),null); return false; }, //完成回调 (curlret:number,httpret:number)=>{ if(curlret!=0 || httpret<200||httpret>=300){ onEvent('downloadError'); //throw 'download error'; }else{ onEvent('download...
来源: Laya_社区 发布时间: 20180108
...更新方法 * txt 缓动对象 */ function updateColor(txt){ var c = Math.floor(Math.random()*3); switch (c) { case 0: txt.color = "#eee000"; break; case 1: txt.color = "#ffffff"; break; case 2: txt.color = "#ff0000"; break; default: txt.color = "#eee000"; break; } } /** * 缓动完成后的回调...
来源: Laya2.0_文档 发布时间: 20210715
...动对象 */ private updateColor(txt:Laya.Text):void{ var c:number = Math.floor(Math.random()*3); switch (c) { case 0: txt.color = "#eee000"; break; case 1: txt.color = "#ffffff"; break; case 2: txt.color = "#ff0000"; break; default: txt.color = "#eee000"; break; } } /** * 缓动完成后的回调...
来源: Laya2.0_文档 发布时间: 20210715
...); if (id) { // 7.x do { var tmp:number = id % 128; var next:number = Math.floor(id / 128); if (next != 0) { tmp = tmp + 128; } buffer.writeByte(tmp); id = next; } while (id != 0); // 5.x // var len:Array = []; // len.push(id & 0x7f); // id >>= 7; // while(id > 0) // { // len.push(id &a...
来源: Laya_社区 发布时间: 20180119
...动对象 */ private updateColor(txt:Laya.Text):void{ var c:number = Math.floor(Math.random()*3); switch (c) { case 0: txt.color = "#eee000"; break; case 1: txt.color = "#ffffff"; break; case 2: txt.color = "#ff0000"; break; default: txt.color = "#eee000"; break; } } 代码运行时,由于update...
来源: Laya3.0_文档 发布时间: 20241014
...var str = ''; for (var i = 0; i < len; i++) { str += $chars.charAt(Math.floor(Math.random() * maxPos)); } return str;; } class LoginView extends ui.LoginUI { constructor() { super(); this.login.on(Laya.Event.CLICK, this, this.Loginyim); this.joinroom.on(Laya.Event.CLICK, this, this.JoinRoom); thi...
来源: Laya_社区 发布时间: 20170722
...值会决定Cluster受区域光(点光、聚光)影响的数量,Math.floor(2048 / lightClusterCount.z - 1) * 4 为每个Cluster的最大平均接受区域光数量,如果每个Cluster所接受光源影响的平均数量大于该值,则较远的Cluster会忽略其中多余的光照影响。 ...
来源: Laya3.0_文档 发布时间: 20241014
...就是面向对象编程的魔力。 谢谢~~~ 下节将会开始讲解 Floor 和 MapFloor 也就是地板的制作方式 PS:附件是这一节的源码 附件 : --> LayaAir_简单跑酷JS版_-_01-添加场景背景.zip 2016-07-22 3 条评论 免费帖 --> 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20160722