大约有 584 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0048 秒)
Laya_社区(419) Laya3.0_api(61) Laya2.0_示例(32) Laya_示例(31) Laya2.0_文档(30) Laya3.0_文档(8) laya_api(2) Laya2.0_api(1)
发布微信小游戏,sprite的graphics.drawPoly安卓平台会引起花屏 发布微信小游戏,sprite的graphics.drawPoly安卓平台会引起花屏 做了两个进度条,一个是用sprite做的,一个是用fairygui的进度条组件做的,当进度条的value值第二次以上为0的...
来源: Laya_社区 发布时间: 20221117
怎么对graphics画出来的图片进行鼠标点击拖动??? 我把示例的内容进行了修改,我不想加载个图片然后移动图片,我只是想画个圆圈然后鼠标可以拖动它移动!!!!但是我改了一下官网上的例子,还是无法移动。。。。。...
来源: Laya_社区 发布时间: 20171106
...d { this.sp = new Sprite(); Laya.stage.addChild(this.sp); //画线 this.sp.graphics.drawLine(10, 58, 146, 58, "#ff0000", 3); //画连续直线 this.sp.graphics.drawLines(176, 58, [0, 0, 39, -50, 78, 0, 117, 50, 156, 0], "#ff0000", 5); //画曲线 this.sp.graphics.drawCurves(352, 58, [0, 0, 19, -100,...
来源: Laya_社区 发布时间: 20180115
[LayaAir3]Laya3.x graphics.drawCurves 闪烁的问题 Laya3试了十几个版本, 划线:graphics.drawLines 删除显示的数据中的数据时,不闪烁 graphics.drawCurves 删除显示的数据中的数据时,闪烁。 如果不删除,就不闪烁。 能解决吗? 我需要用d...
来源: Laya_社区 发布时间: 20241008
graphics绘制边框 梅点击一次旋转30°后边框位置偏移 let sp = new Laya.Sprite(); drawArr = [startX, 0, this.width, 0, this.width - startX, this.height, 0, this.height]; sp.graphics.drawPoly(0, 0, drawArr, fillColor, this.m_vo.c_StrokeColor, this.m_vo.c_StrokeThickness); 附件 : --> ...
来源: Laya_社区 发布时间: 20190910
...is.box); this.draw = new Sprite(); this.box.addChild(this.draw); this.draw.graphics.drawPie(this.say.width/2, this.say.height/2, this.say.width/2+9,0,this.angle, "#ffffff"); this.circle = new Sprite(); this.circle.graphics.drawCircle(this.say.width/2, this.say.height/2, this.say.width/2, "#00ffff");...
来源: Laya_社区 发布时间: 20170807
webgl 模式下 用graphics.drawTexture 平铺图片 图片不显示是什么原因 this.texture1 = Laya.loader.getRes('res/images/bg1.png'); this.texture2 = Laya.loader.getRes('res/images/bg2.png'); var repeatX = 8 ; var repeatCount = Math.ceil(stageW / repeatX); for(let i = 0; i < repeatCount ...
来源: Laya_社区 发布时间: 20180129
... + 3; this.vmask = new Laya.Sprite(); this.vmask.pos(15,15); this.vmask.graphics.drawPie(0, 0, 20, -90, 270, "#000000"); this.progress.addChild(this.progressvalue); this.progressvalue.mask = this.vmask; this.changevalue = function(value) { this.targetvalue = value; target = parseInt(360 * valu...
来源: Laya_社区 发布时间: 20180725
graphics.drawTexture()如何改变层级 用graphics.drawTexture()绘制图像的时候 怎么使后一次绘制的图像层级比上一次的低 ,(除了调换绘制顺序,顺序没法改变) 如下: this.bg.graphics.drawTexture(this.bgTexture, 100, 734, 64, 76); this.bg.graphics.drawTex...
来源: Laya_社区 发布时间: 20180108
...his.DEF_SIZE,this.DEF_SIZE) this.pos(200,200) this.cacheAs = "bitmap" this.graphics.drawPie(this.DEF_SIZE >> 1, this.DEF_SIZE >> 1, this.DEF_SIZE >> 1,-90,this.startY,'#ff0000') this.$circleSprite.blendMode = "destination-out" this.$circleSprite.pos(this.CIRCLE_WIDTH >> 1,thi...
来源: Laya_社区 发布时间: 20180123