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

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

181. 类似抠图、挖空效果的实现 [ 78%]

...          var blue:Sprite = new Sprite();             blue.graphics.drawRect(0, 0, 500, 500, "#004080");             blue.pos(150, 150);             blue.size(500, 500);             blue.on("click", this, onClick);             Laya.stage.addChild(b...

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

182. 显示对象的遮罩调用clear后还是能看到显示对象 [ 78%]

...行绘图从而能够显示出img对象,再点击按钮2时调用imgmk.graphics.clear(),结果还是能看到img对象   附件 : --> soundDebug.rar 2020-04-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 186...

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

183. 绘制形状时事件不触发 [ 78%]

...ite();     this.sprite.on('mousedown', this, on_down);     this.sprite.graphics.drawCircle(x, y, r2, color2, color2, 2);     this.sprite.graphics.drawCircle(x, y, r1, color1, color1, 0);     function on_down(event) {         console.log("_____ kbRing2\n");     } } function laya_test()...

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

184. 要做一个方形倒计时,请问该怎么实现,不知道该怎么做 [ 78%]

... = rect; pos = bian * 0.5; } public function set360(value:int):void { this.graphics.clear(); if(value == -1){ return; } this.graphics.drawPie(pos,pos,r,START+(360 - value), 270 , COLOR ,null,0); } private function ef():void { if( TheGame.GetServerTime() > endTime ){ this.stop(); return; } var now...

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

185. 求问sprite放大后,graphics绘制的图像位置偏移 [ 78%]

求问sprite放大后,graphics绘制的图像位置偏移 let sprite: Sprite = new Sprite(); let texture: Laya.Texture = Laya.loader.getRes(this.skin_img1); sprite.graphics.drawTexture(texture, 0, 0, texture.width, texture.height); sprite.size(texture.width, texture.height); let x: number = 300; ...

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

186. Laya.stage.mouseX; Laya.stage.mouseY取到的坐标用来赋给画曲线方法的起点;在左顶点正常,越往右下角起点就越偏移了 [ 78%]

...a.stage.mouseY); // console.log("移动的点集合" + this.path); this.ps.graphics.drawCurves(this.a, this.b, this.path, "#fff") // console.log("222鼠标点击的点" + this.a, this.b) } up2() { console.log("移动的点集合" + this.path); // Laya.stage.off(Laya.Event.MOUSE_DOWN, this, this.down...

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

187. 版本号:2.0.2 beta, 在sound文件夹下音乐播放不了,放入到res文件夹下可播放 [ 77%]

...umber = 40;  var button: Sprite = new Sprite(); button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2, 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(button); return button; }  //private musicString:string = "./sounds/心跳的证明...

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

188. 官方提供的关系链代码执行报错,是不是wx的sharedCanvas不是Laya的canvas导致的问题 [ 77%]

...waysChange = true;//小游戏使用,非常费,每帧刷新 rankSprite2.graphics.drawTexture(rankTexture,5,78,rankTexture.width,rankTexture.height); }); 报错bitmap._addReference is not a function TypeError: bitmap._addReference is not a function 这是报错地方的代码 /** *<code>Text...

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

189. 使用graphics.drawPath方法绘制带边框圆角矩形出现的问题 [ 77%]

使用graphics.drawPath方法绘制带边框圆角矩形出现的问题 使用graphics.drawPath方法绘制带边框圆角矩形出现的如下图的问题:上边框有一条直线戳出来了,汗!     代码如下:    //自定义路径         var path:Array<any> =  [     ...

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

190. graphics如何实现橡皮擦效果 [ 77%]

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