大约有 779 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)
...test.png");// 此图宽度只有1像素,横着平铺绘制无法显示 p.graphics.fillTexture(tex, 0, 0, 100, tex.height);// 无法显示 p.graphics.drawTexture(tex, 0, 0, 100, tex.height);// 正常显示 忘记说明了,native上显示有问题,网页是正常的 2018-10-25 添加评论 ...
来源: Laya_社区 发布时间: 20181025
...果 如题。 1,打包成原生APP(安卓)时,我们发现在调用Graphics.drawTriangles接口时,会提示_saveToCmd是空的,原因我找到了,是因为在Graphics.__init__将_saveToCmd置为null了,但我不知道该怎么解决,因为我不清楚官方为何要这样处理,...
来源: Laya_社区 发布时间: 20190522
...aya.Sprite(); Laya.stage.addChild(sp); //画曲线 if(x<100){ x++; } sp.graphics.clear(); sp.graphics.drawCurves(10, 58, [x, 0, 19, -100, 39, 0], "#ff0000", 3); } } new Scene(); 附件 : --> 2019-05-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与...
来源: Laya_社区 发布时间: 20190520
...试试下面的例子 代码如下: var spr:Sprite = new Sprite(); spr.graphics.drawCircle(0,0,100,"#ff0000"); spr.mask = new Sprite(); Laya.stage.frameLoop(1, null, drawMask); var index:int = 0; function drawMask():void { index++; if(index > 72) index = index-72; var angle:int = index*5; spr.m...
来源: Laya_社区 发布时间: 20180502
...代码:private _sp = new Laya.Sprite(); private _testMask() { this._sp.graphics.clear(); this._sp.graphics.drawCircle(100, 100, 50, '#ffffff'); Laya.timer.once(3000, this, () => { this.img.mask = this._sp; }) }之后编译项目 2. 使用iphone手机的safari扫码功能运行项目 3秒中之...
来源: Laya_社区 发布时间: 20191216
...的位置,使它产生连续绕一个点旋转的效果 this.gameView.sp.graphics._one[2] = x; this.gameView.sp.graphics._one[3] = y; 我这样写能实现,但是感觉不是正确的方法! IDE中有看到toX和toY属性,但是代码中不知如何获取 2018-02-23 添加评论 免费帖 --...
来源: Laya_社区 发布时间: 20180223
...es("../../../../res/apes/monkey2.png"); var ape:Sprite = new Sprite(); ape.graphics.drawTexture(t,0,0); Laya.stage.addChild(ape); ape.pos(200, 0); })); 这可以正常运行,但是我把外面的 load 函数去掉,将第二个参数中的函数内容独立后却不能显示图片:var t:Textur...
来源: Laya_社区 发布时间: 20170804
RenderContext代码 调度问题 在laya画布上调用Laya.stage.graphics.drawLine画线 发现触发 RenderContext 里面的_drawLine方法 即使在鼠标松开后,还会不停的调用。这是不是正常现象? 附件 : --> 2017-11-27 添加评论 免费帖 --> 分享 微博 QZONE 微...
来源: Laya_社区 发布时间: 20171127
...条的sizeGrid的第5个参数为1即可。 问题2:layaAir 提供了graphics.drawPie方法,你只需要动态的改变结束的角度就可以实现动态的扇形loading。 2017-01-13 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起...
来源: Laya_社区 发布时间: 20170113
...Sprite() sprite.mask = mask Laya.stage.addChild(sprite) //正方形 sprite.graphics.drawPoly(0, 0, [100, 100, 100, 200, 200, 200, 200, 100], "#ffffff") //一挑粗直线 遮挡正方形的左半部分 mask.graphics.drawLines(0, 0, [100, 150, 150, 150], "#ff0000", 200) // drawPoly在WebGl下遮罩又...
来源: Laya_社区 发布时间: 20180224