大约有 419 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0049 秒)
graphics透明度设置详细步骤 调整一个graphics的透明度需要4个步骤 save;alpha;draw;restore; 比如://画一个半透明屎黄色区域 this.graphics.save(); this.graphics.alpha(0.5); this.graphics.drawRect(-40, -110, 80, 110, "#ffcc00"); this.graphics.restore(); //再画一...
来源: Laya_社区 发布时间: 20161228
Sprite用graphics绘制图形后,mouse_over触发scale显示有问题 private _initView():void { if(this._objectInfo.templateInfo.type == "hole") { this._body = new Sprite(); this._body.graphics.drawCircle(0, 0, this._objectInfo.templateInfo.width, "#ff0000"); this._body.width = this._objectInfo....
来源: Laya_社区 发布时间: 20180308
graphics drawPath drawLine 鼠标 画笔 画线 锯齿 mouseMove(e:Laya.Event){ /**/ var p:Laya.Point=this.startPoint; this.cls.graphics.drawPath(0,0,[ ["moveTo", p.x,p.y], ["lineTo", e.stageX,e.stageY] ],null,{strokeStyle:"#ff0000",lineWidth:15,lineJoin:"round",lineCap:"round"}); //*/ //this.cls.g...
来源: Laya_社区 发布时间: 20220920
关于graphics._saveToCmd的问题 this.sp.graphics._saveToCmd(this.test1,arr); 执行上面代码的代码后,会一直执行this.test1函数,如何让它只执行一次呢? 2017-03-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相...
来源: Laya_社区 发布时间: 20170316
webGL模式下 graphic画线涂鸦,一直不停画会出现线条异常 webGL模式下 鼠标按下 移动不停的画线。会出现线条异常。 附件 : --> 2017-08-31 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 ...
来源: Laya_社区 发布时间: 20170831
... this.sprite = new Sprite(); this.sprite.graphics.drawLine(0, 0, -radiusX, radiusY, color); this.sprite.graphics.drawLine(0, 0, radiusX, radiusY, color); this.sprite.graphics.drawLine(-radiusX, radiusY, 0, radiusY * 2, c...
来源: Laya_社区 发布时间: 20201230
... 2018-02-11 15:44 public static SymbolRoot(sp: Laya.Sprite, cfg: any) { sp.graphics.drawCircle(0, 0, 20, "#ffffff", "#000000", 3); sp.graphics.drawLine(-20, -20, 20, 20, "#000000", 3); } public static SymbolSeq(sp: Laya.Sprite, cfg: any) { sp.graphics.drawLine(-20, 0, 2...
来源: Laya_社区 发布时间: 20180211
关于graphics镂空的问题https://ask.layabox.com/question/139 https://ask.layabox.com/question/139 贴上说镂空问题已经解决,但我还是遇到同样的问题,我使用的是layaair1.7.5,求教。 2017-07-10 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20170710
...。经调试后发现在Skeleton::_update方法中的以下语句:var tGraphics; if (this._aniMode == 0) { tGraphics = this._templet.getGrahicsDataWithCache(this._aniClipIndex, this._clipIndex) || this._createGraphics(); if (tGraphics && this.graphics != tGraphics) { this.graphics = tGraph...
来源: Laya_社区 发布时间: 20200109
发布微信小游戏,sprite的graphics.drawPoly安卓平台会引起花屏 发布微信小游戏,sprite的graphics.drawPoly安卓平台会引起花屏 做了两个进度条,一个是用sprite做的,一个是用fairygui的进度条组件做的,当进度条的value值第二次以上为0的...
来源: Laya_社区 发布时间: 20221117