大约有 209 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0033 秒)
关于graphics._saveToCmd的问题 this.sp.graphics._saveToCmd(this.test1,arr); 执行上面代码的代码后,会一直执行this.test1函数,如何让它只执行一次呢? 2017-03-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20170316
关于graphics镂空的问题https://ask.layabox.com/question/139 https://ask.layabox.com/question/139 贴上说镂空问题已经解决,但我还是遇到同样的问题,我使用的是layaair1.7.5,求教。 2017-07-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20170710
如何清除graphics绘制的矢量图 let count1 = 1; Laya.timer.loop(3000, this, function () { sp.graphics.clear(); if (count1 == 0) { sp.graphic...
来源: Laya_社区 发布时间: 20170817
...te = new laya.display.Sprite; con.addChild(sp); sp.x = 250; sp.y = 300; sp.graphics.drawRect(-50,-100,100,100,"#ff0000"); sp.hitArea = new laya.maths.Rectangle(-50,-100,100,100); sp.on(laya.events.Event.CLICK,this,this.spHandler); function spHandler() { sp.graphics.clear(); var rc:nu...
来源: Laya_社区 发布时间: 20180106
...除释放资源? var sp = new Laya.Sprite(); Laya.stage.addChild(sp); sp.graphics.drawPie(0,0,50,0,160,"#122D3E"); 绘制完成以后,我怎么从舞台删除绘制的图形和释放Sprite相关资源? clear和removeChild???具体怎么操作? 2017-11-19 添加评论 免费帖 --...
来源: Laya_社区 发布时间: 20171119
WebGl下 graphics画出东西后 移动sprite 不起效果 开启 webGl 先用graphics 画出任意东西,然后移动这个sprite 不起效果 2017-07-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 6 个回复 cuixueyi...
来源: Laya_社区 发布时间: 20170711
... = 0 Laya.timer.loop(100, this, () => { if (r >= 360) r = 0; r++; sp.graphics.clear(true); sp.graphics.drawPie(0, 0, 50, 0, r, "#00ff1e"); sp2.graphics.clear(true); sp2.graphics.drawPie(0, 0, 50, 0, r, "#00ff1e"); }) 附件 : --> test.zip 2019-07-01 添加评论 免费帖 --> 分享 微博 QZO...
来源: Laya_社区 发布时间: 20190701
...unction CreateBtn(xx:int,yy:int):Sprite { var btn:Sprite=new Sprite(); btn.graphics.drawRect(0,0,200,50,"#FF0000"); btn.pos(100,400); var text:Text=new Text(); text.text="Draw"; btn.addChild(text); Laya.stage.addChild(btn); btn.size(200,50); return btn; } //点击DrawToCanvas按钮,进行截屏 pr...
来源: Laya_社区 发布时间: 20170822
...以为线条设置hit(碰撞)区域吗? var sp:Sprite = new Sprite();sp.graphics.clear(); sp.graphics.drawRect(0, 0, 100,100,"#ff0000" ); var hit:HitArea = new HitArea(); hit.hit = sp.graphics; sp.hitArea = hit; 使用上面的方法可以给有填充 sp 添加触发区域! 但是如果sp...
来源: Laya_社区 发布时间: 20161216
...ameLoop(1, this, ()=> { angle +=1; if(angle > 360) { angle = 0; } sp.graphics.clear(); sp.graphics.drawPie(128,128,128,0,angle,"0xff0000"); var tex = sp.drawToTexture(256,256,0,0); //var html:Laya.HTMLCanvas = sp.drawToCanvas(256,256,0,0); //img.loadImageSource(html.source,true); //html.clear(...
来源: Laya_社区 发布时间: 20190520