大约有 87 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0224 秒)
Laya_社区(62) Laya_示例(6) Laya2.0_示例(6) Laya2.0_文档(6) laya_api(2) Laya3.0_api(2) Laya2.0_api(2) Laya3.0_文档(1)
...知道怎么用 xinfeiyanwu • 2018-04-18 12:21 就是在ide里类似用loadImage()制作动画,然后想在这动画没完成的过程中在动画到某一张图片时让他停止,等一段时间再让它从这一张图片开始动画。
来源: Laya_社区 发布时间: 20180418
...tBounds获取 2.autoSize=true 3.当伤害区域Rectangle ani产生变化,loadImage 内特定的IMG,但是加载完成的回调会不会影响 获取Rectangle 各路大佬,请教一下 附件 : --> 2017-07-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...
来源: Laya_社区 发布时间: 20170708
...Center"); this.boxSpaw = this.getChildByName("boxSpaw"); //this.spriteSpaw.loadImage("../..") buttonTest.on(Laya.Event.CLICK,this,()=>{ let point = new Laya.Point(this.sprteCenter.x,this.sprteCenter.y); let pointGlobal = this.sprteCenter.localToGlobal(point); Laya.stage.addChild(this.boxSpaw); th...
来源: Laya_社区 发布时间: 20190221
...于创建Sprite获取大小 发现个奇怪的问题,new Laya.Sprite().loadImage() 创建的对象大小不是图像大小,然后用getBounds获取也拿不到真实的大小? 这个建议官方改下接口,理论上width和height用来检测碰撞,那你看到的就应该是碰撞...
来源: Laya_社区 发布时间: 20180530
...人 忽啊忽啊 • 2018-11-21 13:59 this.sp = new Laya.Sprite(); this.sp.loadImage("Attack_0_0002.png", Laya.Handler.create(this, (data)=>{ this.sp.graphics.drawTexture(this.sp.texture); var bounds = this.sp.getGraphicBounds(true); })); 这样绘制后,最后拿到的宽高就是图...
来源: Laya_社区 发布时间: 20181117
...te Bear End } function createSprite(no){ var flower = new Sprite(); flower.loadImage(texture1); flower.pos((0 + no) * 99.5, 73); flower.mouseEnabled=true; flower.alpha=1; flower.on(Event.CLICK,this,function() { flower.scaleX=1.1; flower.scaleY=1.1; Laya.timer.once(100, this,function() { flower.scale...
来源: Laya_社区 发布时间: 20170110
...创建喇叭 */ _createHorn(){ let horn = new Image() horn.zOrder = 2 horn.loadImage('common/horn.png',-12,-12) this.addChild(horn) } } 附件 : --> 2018-03-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 qian ...
来源: Laya_社区 发布时间: 20180314
...以用addchild添加的显示对象 cuixueying • 2016-10-27 21:38 直接loadImage就可以了
来源: Laya_社区 发布时间: 20161027
...怎么让美术改图 代码:var handani = new Laya.Animation() handani.loadImages(["fresh/hand1.png","fresh/hand2.png"],"handani") handani.frames = ["fresh/hand1.png","fresh/hand2.png"] handani.interval = 150 handani.zOrder = 10000 handani.pos(point.x+50,point.y+30) MainUI.Root.addChild(handani) ...
来源: Laya_社区 发布时间: 20171117
...绘制 var imgUrl = (this.flag = !this.flag) ? this.img1 : this.img2; img.loadImage(imgUrl, 100, 100) } }这是官方的切换位图的示例,但是点击位图距离容器top和left100的区域,还可以触发click事件,这是什么原因啊 2018-05-02 添加评论 免费帖 --> 分享 微...
来源: Laya_社区 发布时间: 20180502