大约有 107 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0034 秒)
Laya_社区(79) Laya3.0_api(6) Laya_示例(5) Laya2.0_示例(5) Laya2.0_文档(4) Laya2.0_api(4) laya_api(2) Laya3.0_文档(2)
为什么调用封装的原生画线api不显示? js封装function drawLine(layaCvs,startX,startY,toX,toY,lineWidth,strokeStyle,lineCap) { var layaCanvas = layaCvs; var oContext = layaCanvas.getContext("2d"); oContext.beginPath(); oContext.moveTo(startX, startY); oContext.lineTo(toX, toY); oConte...
来源: Laya_社区 发布时间: 20180409
...drawCurves 闪烁的问题 Laya3试了十几个版本, 划线:graphics.drawLines 删除显示的数据中的数据时,不闪烁 graphics.drawCurves 删除显示的数据中的数据时,闪烁。 如果不删除,就不闪烁。 能解决吗? 我需要用drawCurves。 附件 : ...
来源: Laya_社区 发布时间: 20241008
...ler.create(this, function () {console.log('KO!~'); })); character.graphics.drawLine(0, 200, 200, 0, "#ff0000", 1); character.graphics.drawLine(0, 0, 200, 200, "#ff0000", 1); character.graphics.drawCircle(100, 100, 100, null, "#ff0000", 1); character.graphics.drawRect(0, 0, 200, 200, null, "#0000ff",...
来源: Laya_社区 发布时间: 20170828
...ghtBead'; this.graphics.drawCircle(0,0,40,null,'#ff0000',1); this.graphics.drawLine(-45,0,45,0,'#ff0000',1); this.graphics.drawLine(0,45,0,-45,'#ff0000',1); this.alpha = 0; Laya.stage.addChild(this); // this.pos(440,640); } Laya.class(sightBeadSprite, "SightBead", Laya.Sprite); return sightBeadSprit...
来源: Laya_社区 发布时间: 20171012
...neColor:*, lineWidth:Number = 1):void 绘制一系列曲线。 Graphics drawLine(fromX:Number, fromY:Number, toX:Number, toY:Number, lineColor:String, lineWidth:Number = 1):void 绘制一条线。 Graphics drawLines(x:Number, y:Number, points:Array, lineColor:*, lineWidth:Number = 1):void 绘...
来源: laya_api 发布时间: 20170929
... y+=this._charSize.height; this._graphics.drawLine(x,y,x+lineWidth,y,this.underlineColor || this.color,1); } y 如果 y+=this._charSize.height/2; 就是中划线 可以自己加个变量 控制 例如 linethrough 如果是 true的时候 ...
来源: Laya_社区 发布时间: 20171019
...phic,recList){ var lineY=lastWords.y+lastWords.height; if(hasLine) graphic.drawLine(startWord.x,lineY,lastWords.x+lastWords.width,lineY,this.color,1); var hitRec=HTMLHitRect.create(); hitRec.rec.setTo(startWord.x,lastWords.y,lastWords.x+lastWords.width-startWord.x,lastWords.height); hitRec.href=this...
来源: Laya_社区 发布时间: 20190801
...: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 用drawLine去绘制即可,具体逻辑建议你自己网上搜下吧,应该有很多类似的做法! 2017-08-02 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 ...
来源: Laya_社区 发布时间: 20170802
...9*****192 赞同来自: cuixueying 如果这种效果的话 可以通过 drawLine 来实现 下面 只是样式 变量 写活 应该满足 for(var i=1;i<40;i+=2){ sp.graphics.drawLine(1+(4*i), 58, 1+(4*i)+4, 58, "#ff0000", 3); } 2017-04-24 1 0 ...
来源: Laya_社区 发布时间: 20170423
...of null at WebGLContext2D.__proto.stroke (laya.js:17440) at RenderContext._drawLine (laya.js:4738) at GraphicsGL.__proto._renderAll (laya.js:987) at RenderSprite3D.__proto._graphics (laya.js:5234) at RenderSprite3D.RenderSprite._initRenderFun [as _fun] (laya.js:5466) at Sprite.__proto.render (laya.j...
来源: Laya_社区 发布时间: 20171214