大约有 41 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0030 秒)
关于.graphics.drawPath的问题 我init的高度是2001,为什么用graphics.drawPath高度为800时在这么下面,按理应该在中间偏上呀? 代码如下:Laya.init(1125, 2001); Laya.stage.scaleMode = "exactfit"; Laya.stage.alignH = "center"; Laya.stage.screenMode = "v...
来源: Laya_社区 发布时间: 20170206
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.drawPath方法绘制带边框圆角矩形出现的问题 使用graphics.drawPath方法绘制带边框圆角矩形出现的如下图的问题:上边框有一条直线戳出来了,汗! 代码如下: //自定义路径 var path:Array<any> = [ ...
来源: Laya_社区 发布时间: 20170320
关于graphics.drawPath手机端和PC端不一致的问题 我的版本是1.7.4beta。 我想用drawPath画一个这样的图形。如图 于是我先尝试着先用drawPath画一个圆,然后输入以下代码。 以下是ts文件的全部代码。module laya { import Sprite = Laya.Sprite; impor...
来源: Laya_社区 发布时间: 20170425
关于Graphics中drawPath方法使用arcTo的bug 看引擎的源码中,有用到arcTo方法,查阅CanvasRenderingContext2d API大概意思是利用上下问的一个点,加上两个控制点,形成一个夹角,然后找到刚好相切这两条线的半径微为r的圆的一部分圆弧,...
来源: Laya_社区 发布时间: 20201023
drawPath的绘制问题 绘制数据:moveTo,0,0,lineTo,0,448,moveTo,32,0,lineTo,32,448,moveTo,64,0,lineTo,64,448,moveTo,96,0,lineTo,96,448,moveTo,128,0,lineTo,128,448,moveTo,160,0,lineTo,160,448,moveTo,192,0,lineTo,192,448,moveTo,224,0,lineTo,224,448,moveTo,256,0,lineTo,256,448,moveTo,288,0,lineT...
来源: Laya_社区 发布时间: 20170901
使用drawPath路径报错 在使用graphics.drawPath的过程中,出现Cannot read property '_drawPath' of null,如下图:不清楚错误原因在哪里 附件 : --> 2017-11-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链...
来源: Laya_社区 发布时间: 20171105
...全透明, 相应位置的参数为空即可 例如: this.graphics.drawPath(0, 0, Yu_path3, {fillStyle: "#ffffff"}, {"strokeStyle":"#E3E3E5","lineWidth":2}); 填充色为白色 this.graphics.drawPath(0, 0, Yu_path3, null, {"strokeStyle":"#E3E3E5","lineWidth":2}); 无填充色,透明 2018...
来源: Laya_社区 发布时间: 20180416
...到D点 ["closePath"] //闭合路径 ]; btn_1=new View(); btn_1.graphics.drawPath(0, 0, path, {fillStyle: "#123456"}); this.addChild(btn_1); btn_1.mouseEnabled=true; btn_1.on(Event.MOUSE_DOWN, this, onClickBt1); 不管怎么点,在这个点击方法里面是不会执行的 2018-07-09 添...
来源: Laya_社区 发布时间: 20180709
...,不同层级用graphics绘制的背景,会被清除 关于Graphics中drawPath方法使用arcTo的bug 问题状态 最新活动: 2017-01-20 03:37 浏览: 1245 关注: 2 人 cuixueying • 2017-01-21 12:30 工具还是有的,API还是flash的API,文档依然有保留,但是关于layaFlash...
来源: Laya_社区 发布时间: 20170119