大约有 356 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0041 秒)
Laya_社区(157) Laya3.0_api(64) Laya2.0_api(59) laya_api(55) Laya2.0_文档(6) Laya2.0_示例(6) Laya_示例(5) Laya3.0_文档(4)
发布微信小游戏,sprite的graphics.drawPoly安卓平台会引起花屏 发布微信小游戏,sprite的graphics.drawPoly安卓平台会引起花屏 做了两个进度条,一个是用sprite做的,一个是用fairygui的进度条组件做的,当进度条的value值第二次以上为0的...
来源: Laya_社区 发布时间: 20221117
...,点击则可正常关闭); 请指教! // 写法一 let g:Laya.Graphics = new Laya.Graphics(); g.drawRect(this.closeBtn.x-10,this.closeBtn.y-10,this.closeBtn.width+20,this.closeBtn.height+20,"#FF0000"); let hitA:Laya.HitArea = new Laya.HitArea(); hitA.hit = g; this.closeBtn.hitArea = hitA;...
来源: Laya_社区 发布时间: 20170920
...游戏开发基础,本篇从API到示例分别介绍Sprite.loadImage与Graphics.drawTexture两种显示图片的方法。 ## 1、用loadImage方法显示与切换图片 ### 1.1 loadImage API概述 在API文档中搜索laya.display.Sprite,可以找到loadImage()方法,如图1所示,我们先...
来源: Laya2.0_文档 发布时间: 20210715
...复 想个名字好烦呀! 赞同来自: 层级 Images Sprite Pie imgSp.graphics.clear(); imgSp.graphics.drawPie(501,501,501,0,70,""); 2018-12-11 0 0 分享 微博 QZONE 微信 熊猫大侠 赞同来自: 自己回复一个 然后给自己的回复设置最佳 2018-11-13 0 1 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20181109
...nt.MOUSE_MOVE, this, mousemove); function mousemove(e) { drawLayer.graphics.drawCircle(e.target.mouseX,e.target.mouseY,20,"#ffffff") drawLayer.cacheAsBitmap; } 我的思路是每一次move都把对应的圆形区域绘制到一个容器上,这样一来drawcall就不会一直增加...
来源: Laya_社区 发布时间: 20160725
... // 保证customRender必定执行 this.frameLoop(1, this, () => { this.graphics.clear(); this.graphics.drawLine(0, 0, 1, 0, '#000'); }); this.customRenderEnable = true; this.customRender = (context: Laya.RenderContext, x: number, y: number) => { let webGLContext = context.ctx as Laya.WebGLCon...
来源: Laya_社区 发布时间: 20180728
...区的问题 根据你们提示的方法给按钮增加热区 var tempgraphics:Laya.Graphics= new Laya.Graphics(); tempgraphics.drawRect(0,0,50,50,"FFFFFF"; this.rootSceneView.avatorBtn.hitArea = tempgraphics 首先绘制的时候必须带上颜色 才能绘制 然后会崩溃 附件 : --...
来源: Laya_社区 发布时间: 20180322
...片纹理切换一样切换吗? 图片纹理切换的案例代码: ape.graphics.clear(); var texture = Laya.loader.getRes(textureUrl); ape.graphics.drawTexture(texture, 0, 0); Laya.Animation()这样的动画有类似纹理切换这样的方法吗? 2017-12-05 添加评论 免费帖 --> 分...
来源: Laya_社区 发布时间: 20171205
...e.addChild(mLabelSprite); mLabelSprite.pos(mStartX, mStartY); mLabelSprite.graphics.fillText(tEventData.name, 0, 0, "20px Arial", "#ff0000", "center"); Tween.to(mLabelSprite, { y: mStartY - 200 }, 1000, null, Handler.create(this, this.playEnd)) } playEnd() { mLabelSprite.removeSelf(); } } new Skelet...
来源: Laya2.0_示例 发布时间: 20241118
...299行, _dt() { var g = this.tips._graphics; g.clear(); g.fillText(this._tips[this.prei], -26, 0, this.fontstr, this.fc, "center"); g.fillText("(" + this.p + "%)", 1 / 2 * this._len[this.prei] - 26,...
来源: Laya_社区 发布时间: 20170518