• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 107 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0034 秒)

41. 为什么调用封装的原生画线api不显示? [ 75%]

为什么调用封装的原生画线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

42. [LayaAir3]Laya3.x graphics.drawCurves 闪烁的问题 [ 73%]

...drawCurves 闪烁的问题 Laya3试了十几个版本, 划线:graphics.drawLines 删除显示的数据中的数据时,不闪烁 graphics.drawCurves 删除显示的数据中的数据时,闪烁。 如果不删除,就不闪烁。   能解决吗?   我需要用drawCurves。     附件 : ...

来源: Laya_社区 发布时间: 20241008

43. Sprite graphics的显示比例问题 [ 73%]

...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

44. 关于removeChildren、 destroy和destroyChildren的疑惑 [ 73%]

...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

45. laya.display.Graphics [ 73%]

...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

46. Text的中划线(删除线) [ 73%]

...     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

47. HTMLDivElement下划线换行时,下划线颜色错误 [ 72%]

...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

48. 高德地图上的这种导航线要怎么画?我知道要使用graphics矢量绘图API。但是不知道这种的线路图如何实现? [ 72%]

...: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: 用drawLine去绘制即可,具体逻辑建议你自己网上搜下吧,应该有很多类似的做法! 2017-08-02 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 ...

来源: Laya_社区 发布时间: 20170802

49. 如何使用graphics绘画虚线 [ 72%]

...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

50. 物理引擎,我按照官方例子做的,不知道那里写错了,总是报这个错,大神帮我看下 [ 70%]

...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