大约有 241 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)
Laya_社区(201) Laya2.0_文档(10) Laya3.0_api(6) Laya2.0_示例(6) Laya2.0_api(5) Laya_示例(5) Laya3.0_文档(5) laya_api(3)
...etChildByName获取不了slider 同样在panel下,同样是box,setting_bg就能获取,slider 就获取不了,为null 附件 : --> 2017-08-01 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 cuixueying 赞同...
来源: Laya_社区 发布时间: 20170801
...ne extends Laya.Sprite{ constructor(){ super(); Laya.init(500, 300, Laya.WebGL); var bg = new Laya.Sprite(); bg.loadImage("comp/hunter.jpg"); this.addChild(bg); Laya.timer.frameLoop(1,this,this.move); // drawSomething(); } move() { sp = new Laya.Sprite(); Laya.stage.addChild(sp); //画曲线 if(x<...
来源: Laya_社区 发布时间: 20190520
...什么点击图片会有穿透事件的功能??费解 这个用的是bg.png,comp自带的组件。 下面的圆形金币是图片,我添加了 on(Laya.Event.MOUSE_DOWN, this,this.mouseHandlerDown,); on(Laya.Event.MOUSE_UP, this,this.mouseHandlerUp,[i]);[/i] [i] [/i] [i]为什么在这个bg.p...
来源: Laya_社区 发布时间: 20180131
...7261 赞同来自: progressBar就是两张png的图片一张为背景图(bg)一张是进度条图(bar) 在你创建progressBar的时候的图片资源路径中的skin输入你的背景图的名字xxx.png, 这时候progressBar会根据你传入的背景图的路径自动查找进度条的资...
来源: Laya_社区 发布时间: 20180408
...低 ,(除了调换绘制顺序,顺序没法改变) 如下: this.bg.graphics.drawTexture(this.bgTexture, 100, 734, 64, 76); this.bg.graphics.drawTexture(this.bgTexture, 131, 703, 64, 76); 怎么让第二行绘制图像的层级比第一行低 2018-01-08 添加评论 免费帖 --> 分享 微...
来源: Laya_社区 发布时间: 20180108
....Event; import laya.events.Keyboard; import laya.utils.Stat; import laya.webgl.WebGL; public class ClearTextureResTest { private var sp:Sprite; public function ClearTextureResTest() { WebGL.enable(); Laya.init(1000, 800); //显示一个图片 sp = Sprite.fromImage("res/bg.jpg"); Laya.stage.addChild(...
来源: Laya2.0_文档 发布时间: 20210714
....Event; import laya.events.Keyboard; import laya.utils.Stat; import laya.webgl.WebGL; public class ClearTextureResTest { private var sp:Sprite; public function ClearTextureResTest() { WebGL.enable(); Laya.init(1000, 800); //显示一个图片 sp = Sprite.fromImage("res/bg.jpg"); Laya.stage.addChild(...
来源: Laya2.0_文档 发布时间: 20200929
...var dialog = new Laya.Dialog(); dialog.width=300; dialog.height=600; //var bg = new Laya.Image('comp/img_bg.png'); //dialog.addChild(bg); var button = new Laya.Button('comp/button.png'); button.label='Hello World!'; button.name = Laya.Dialog.CLOSE; button.width=260; button.height=500; button.pos(35,...
来源: Laya_社区 发布时间: 20190117
...S } else { this._skinLoaded(); } } } protected _skinLoaded(): void { this._bg.skin = this._skin; this._bar.skin = this._skin.replace(".png", "$bar.png"); this.callLater(this.changeValue); this._sizeChanged(); this.event(Event.LOADED); }加载过程中, 组件执行了destroy()方法后, this._bg.s...
来源: Laya_社区 发布时间: 20200108
... 创建对象池 然后回调函数里面的pref参数就是我加载的bg_ ,创建一个prefab对象 赋值json信息, 然后从对象池取出来这个对象并实例化, 最后把这个bg_对象添加到节点下 。。。我不知道说明白没 不懂的可以探讨 2019-10-...
来源: Laya_社区 发布时间: 20190918