大约有 83 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0043 秒)
...gress.LoadProgressBinder.bindAll) this.progressUI.UIMenu.value = 0.0; Laya.stage.addChild(this.progressUI.displayObject); Laya.timer.loop(100, this, this.updataPosition); this.loadMainDatas(); } public updataPosition() { this.progressUI.setPosition(Laya.stage.width / 2, Laya.stage.height / 2); } pub...
来源: Laya_社区 发布时间: 20171204
....width, Laya.Browser.height, Laya.WebGL); var sp = new Laya.Sprite(); Laya.stage.addChild(sp); sp.loadImage("res/img/popular.png", 0, 0, 0, 0, Laya.Handler.create(this, function (a1, a2) { console.log(a1, a2); }), [100]); 为什么不能把Laya.Hander.create后面带的这个参数传到Function...
来源: Laya_社区 发布时间: 20180621
...机预览显示异常 官网示例摇一摇报错,就解决方案 修改stage的scale后,会发生异常情况 怎么讲layaAir里的显示对象添加到matter.js里的物理引擎世界里 官方新手游戏引导示例中关于hit和unHit的使用疑问 LayaAir2D示例 Mac 2.0.0beta3 Chrome...
来源: Laya_社区 发布时间: 20180309
..."Uncaught TypeError:Cannot set property 'y' of null"的解决方案 修改stage的scale后,会发生异常情况 重力感应 Accelerator 发布微信游戏后失效。是因为什么? 问题状态 最新活动: 2018-01-10 14:13 浏览: 708 关注: 2 人 Laya_Aaron • 2018-01-10 15:03 我这边...
来源: Laya_社区 发布时间: 20180110
...aya.MiniAdpter.AutoCacheDownFile=true var ape: Sprite = new Sprite(); Laya.stage.addChild(ape); ape.loadImage(a); 代码是这样的,这时候缓存(wxanewfiles)里是有这个图片文件的,但是临时文件夹下(wxafiles)也有,并且临时文件夹每次打开不能够重复利用导致...
来源: Laya_社区 发布时间: 20181024
...添加下面的方法, 一样会导致setInterval明显延迟执行; Laya.stage.on('click', null, function (e) { console.log.log(`click`); }); 即使我将所有的事件绑定全部注释掉频繁的点击页面也会卡住!!!!! 我在事件的处理函数中设置stopPropagation没有任何作用;...
来源: Laya_社区 发布时间: 20170323
...i = new Laya.Animation(); roleAni.loadImages(); roleAni.play(); Laya.stage.addChild(roleAni); 这样就会报路劲错误 var urls = [ 'img/food/f1.png', 'img/food/f2.png', 'img/food/f3.png', 'img/food/f4.png', 'img/food/f5.png', 'img/food/f6.png', 'img/food/f7.png', 'img/food/f8.png', ...
来源: Laya_社区 发布时间: 20170718
..." + "LayaBox</span><span>欢迎你的加入</span>" Laya.stage.addChild(div);2、获取Html文本的实际内容、获取html文本的实际宽高(contextWidth、contextHeight) 示例如下:var htmlDiv:HTMLDivElement=new HTMLDivElement(); var html:String = "<span color='#e...
来源: Laya_社区 发布时间: 20161027
...Fun('prefab_' + name, obj.create,obj); Laya.stage.addChild(prefab); prefab.pos(100,100); }),null,Laya.Loader.PREFAB); 如上,obj.create打包后在真机找不到此函数。 附件 : --> 2D.zip 2020-04-09 添加评论 免费...
来源: Laya_社区 发布时间: 20200409
... g_stat_heiht); 加入下列代码设置窗口位置和拉伸效果。Laya.stage.scaleMode = Laya.Stage.SCALE_SHOWALL; Laya.stage.screenMode = Laya.Stage.SCREEN_HORIZONTAL; Laya.stage.alignH = Laya.Stage.ALIGN_CENTER; Laya.stage.alignV = Laya.Stage.ALIGN_MIDDLE; 2.设置标题和输出信息 网上...
来源: Laya_社区 发布时间: 20160623