大约有 185 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0048 秒)
...s/ getGraphicBounds。 ```typescript var sp=new Laya.Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); var bounds:Laya.Rectangle=sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调用。 1. 设置容...
来源: Laya2.0_文档 发布时间: 20210714
...); //创建按钮 this.btn = new Sprite().size(205, 55); this.btn.graphics.drawRect(0, 0, this.btn.width, this.btn.height, "#057AFB"); this.txt = new Text(); this.txt.text = "销毁"; this.txt.pos(75, 15); this.txt.fontSize = 25; this.txt.color = "#FF0000"; this.btn.addChild(this.txt); this.btn.pos(...
来源: Laya_示例 发布时间: 20241118
...Laya.HitArea = new Laya.HitArea(); this.imgExpedition.hitArea = dd; dd.hit.drawRect(174, 123, 210, 230, "#000000"); dd.unHit.clear(); dd.unHit.drawRect(0, 0, 174, 123, "#000000"); }) 2018-05-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...
来源: Laya_社区 发布时间: 20180507
...00, 117, 0, 136, 100, 156, 0], "#ff0000", 5); //画矩形 this.sp.graphics.drawRect(10, 166, 166, 90, "#ffff00"); //画多边形 this.sp.graphics.drawPoly(264, 166, [0, 0, 60, 0, 78.48, 57, 30, 93.48, -18.48, 57], "#ffff00"); //画三角形 this.sp.graphics.drawPoly(400, 166, [0, 100, 50, 0, 100, 10...
来源: Laya_社区 发布时间: 20180115
... sprite_.graphics.beginBitmapFill(bitmap_, matrix, true); sprite_.graphics.drawRect(100, 50, 200, 90); sprite_.graphics.endFill(); addChild(sprite_); 2017-04-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixu...
来源: Laya_社区 发布时间: 20170414
...w Laya.Sprite(); this.firstSp = new Laya.Sprite(); this.firstSp.graphics.drawRect(0, -100, 200, 200, null, "#ffffff"); this.firstSp.graphics.drawLine(0, 0, 100, 100, "#ffffff", 5); this.firstSp.graphics.drawCircle(100, 100, 20, null, "ffffff"); Laya.stage.on(Laya.Event.MOUSE_WHEEL, this, this.Mous...
来源: Laya_社区 发布时间: 20190314
...s/ getGraphicBounds。 ```javascript var sp=new Laya.Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); var bounds:Laya.Rectangle=sp.getGraphicBounds(); Laya.stage.addChild(sp); ``` getBounds可以满足多数多数需求,但由于其需要计算边界,不适合频繁调用。 1. 设置容...
来源: Laya2.0_文档 发布时间: 20210715
...案一: var s:Sprite = new Sprite(); s.graphics.setAlpha(0.3); s.graphics.drawRect(0,0,300,300,"#ffffff"); s.graphics.setAlpha(1); addChild(s); var img:Image = new Image("a.png"); s.addChild(img); //方案二: var s:Sprite = new Sprite(); s.graphics.alpha(0.3); s.graphics.drawRec...
来源: Laya_社区 发布时间: 20180209
...w Laya.Sprite(); this.firstSp = new Laya.Sprite(); this.firstSp.graphics.drawRect(0, -100, 200, 200, null, "#ffffff"); this.firstSp.graphics.drawLine(0, 0, 100, 100, "#ffffff", 5); this.firstSp.graphics.drawCircle(100, 100, 20, null, "ffffff"); Laya.stage.on(Laya.Event.MOUSE_WHEEL, this, this.Mous...
来源: Laya_社区 发布时间: 20190314
...ea = new Sprite(); this.maskArea.alpha = maskAlpha; this.maskArea.graphics.drawRect(0, 0, Laya.stage.width, Laya.stage.height, maskColor); this.guideContainer.addChild(this.maskArea); //绘制一个圆形区域,利用叠加模式,从遮罩区域抠出可交互区 this.interactionArea = new Sprit...
来源: Laya_社区 发布时间: 20180116