大约有 708 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0047 秒)
Laya_社区(584) Laya3.0_api(40) laya_api(31) Laya2.0_api(27) Laya2.0_文档(20) Laya3.0_文档(5) Laya2.0_示例(1)
绘图graphics中的鼠标事件 在舞台上添加了好几个节点,用于存放绘图,结构是 this.box.addChild(this.data); Laya.stage.addChild(this.box) 其中鼠标事件MOUSE_DOWN点击需要获取的是this.data的内容 this.data是由一块画布,几个点构成,我用循环函...
来源: Laya_社区 发布时间: 20171117
...代码造成。 __proto.createOneLine=function(startWord,lastWords,hasLine,graphic,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...
来源: Laya_社区 发布时间: 20190801
Graphics 怎么画 环形 在 Laya 中 Graphics 的绘制屏蔽了 endFill 还怎么画 环形了 2017-11-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 3 个回复 Monica - 知识达人 赞同来自: 看下这个...
来源: Laya_社区 发布时间: 20171108
分享一个Graphics画圆角矩形的封装 圆角矩形实践中用得频繁,做了一个封装分享出来,TS版本的,分2步: 1、在项目的libs目录中新建一个d.ts,写入画圆角矩形的函数声明 declare namespace laya.display { interface Graphics { ...
来源: Laya_社区 发布时间: 20210123
...接 提交 1 个回复 Laya_XS 赞同来自: sprite的示例,然后调用graphics去画个颜色,sprite不能直接设置颜色值 2018-04-10 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 jcd404552157 相关问题 求问shader中的...
来源: Laya_社区 发布时间: 20180410
WebGl下 graphics画出东西后 移动sprite 不起效果 开启 webGl 先用graphics 画出任意东西,然后移动这个sprite 不起效果 2017-07-11 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 6 个回复 cuixueyi...
来源: Laya_社区 发布时间: 20170711
畫環形倒計時,一個關於Graphics的問題 如圖所示,大概到最後兩秒環形位置被重繪錯了。算法檢查了沒問題,在AS3里運行都是正常的。 請幫忙看看是不是Graphics的問題。 附件 : --> CountDown.zip 2016-09-27 添加评论 免费帖 --> 分享 ...
来源: Laya_社区 发布时间: 20160927
graphics如何实现橡皮擦效果 // 增加一个容器 var box = new Sprite(); // 设置容器为画布缓存 box.cacheAs = "bitmap"; this.layCanvas.addChild(box); // 绘制红色方块 var red = new Sprite(); red.graphics.drawRect(0, 0, 150, 150, "#ff0000"); box.addChild(red); // 绘制一个...
来源: Laya_社区 发布时间: 20170707
graphics的fillTexture 圆角图边缘有多出线条 var texture = LoadingManager.instance.getRes("res/progress.png"); var graphics=new Laya.Graphics(); graphics.fillTexture(texture,0,0,texture.width,texture.height,"repeat"); 如果用drawTexture就没问题,因为平铺需求 需要用到fillTe...
来源: Laya_社区 发布时间: 20180904
...曲线,然后得到曲线内的图片。 以前在flash里面只需要 .graphics.beginBitmapFill(bmp.bitmapData); .graphics.moveTo( 100, 50 ); .graphics.lineTo( 300, 50 ); .graphics.lineTo( 300, 140 ); .graphics.lineTo( 100, 140 ); .graphics.lineTo( 100, 50 ); graphics.endFill(); moveTo和lineTo...
来源: Laya_社区 发布时间: 20170414