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

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

51. 如何实现渐变填充对象呀? [ 81%]

...对象呀? 请问LayaAir如何绘制一个渐变矩形? this.graphics.drawRect(0, 0, 500, 350, "#ffffff") drawRect(x:Number, y:Number, width:Number, height:Number, fillColor:*, lineColor:* = null, lineWidth:Number = 1):void 参数fillColor:* — 填充颜色,或者填充绘图的渐变对象 ...

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

52. Laya能不能镂空填充区域实现穿透点击? [ 81%]

... var m:Sprite = new Sprite(); m.graphics.beginFill(0x0, 0.5); m.graphics.drawRect(50, 50, 100, 100); m.graphics.drawRect(75, 75, 50, 50); m.graphics.endFill(); 附件 : --> 2015-12-18 1 条评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 ...

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

53. 绘制矩形与圆角矩形(JavaScript-LayaAir基础篇(JS)-矢量图) [ 81%]

# 绘制矩形与圆角矩形 ### 一、用drawRect方法绘制矩形 在API中搜索`laya.display.Graphics`类可以查看到该API的各种矢量绘图方法。其中"drawRect();"方法用于绘制矢量矩形。该方法的详细说明如下图所示: ​ ![图片](img/1.png) ​ (图1) 下...

来源: Laya2.0_文档 发布时间: 20210715

54. 一个LayaAir moveout target 设计上的疑问? [ 81%]

... Laya.stage.addChild(sp[j + i * 10]);         sp[j + i * 10].graphics.drawRect(0, 0, 50, 50, "black");         sp[j + i * 10].size(50, 50);         sp[j + i * 10].pos(i * 60, j * 60);         sp[j + i * 10].on(Laya.Event.MOUSE_OVER, this, over);         sp[j + i * 10].on(Laya.Eve...

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

55. hitTestPrior点击穿透 [ 80%]

...GL); Laya.stage.bgColor="#EEFFCC"; var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,300,300,"#FFFF00"); sp.size(100,100); sp.on(Event.CLICK,this,onClickSp); Laya.stage.addChild(sp); var spchild:Sprite=new Sprite(); spchild.graphics.drawRect(0,0,200,200,"#FF0000"); spchild.size(200,200); spchild....

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

56. 输入设备-贪吃蛇(重力感应) [ 80%]

...{ Segment.super(this); Segment.prototype.init = function() { this.graphics.drawRect(-height / 2, -height / 2, width + height, height, "#FF7F50"); } // 获取关节另一头位置 Segment.prototype.getPinPosition = function() { var radian = this.rotation * Math.PI / 180; var tx = this.x + Math.cos(ra...

来源: Laya_示例 发布时间: 20241118

57. 绘制矩形与圆角矩形(ActionScript-LayaAir基础篇(AS3)-矢量图) [ 80%]

# 绘制矩形与圆角矩形 ### 一、用drawRect方法绘制矩形 在API中搜索`laya.display.Graphics`类可以查看到该API的各种矢量绘图方法。其中"drawRect();"方法用于绘制矢量矩形。该方法的详细说明如下图所示: ​ ![图片](img/1.png) ​ (图1) 下...

来源: Laya2.0_文档 发布时间: 20210715

58. hitArea用法问题 [ 80%]

... 请指教!  // 写法一 let g:Laya.Graphics = new Laya.Graphics(); g.drawRect(this.closeBtn.x-10,this.closeBtn.y-10,this.closeBtn.width+20,this.closeBtn.height+20,"#FF0000"); let hitA:Laya.HitArea = new Laya.HitArea(); hitA.hit = g; this.closeBtn.hitArea = hitA; // 写法二 this.closeBtn.graph...

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

59. UI组件对齐方式奇奇怪怪 [ 80%]

...UI组件对齐方式奇奇怪怪 var _parent = new Box(); _parent.graphics.drawRect(0, 0, 500, 500, '#ff0000'); Laya.stage.addChild(_parent); var _child = new Box(); _child.graphics.drawRect(0, 0, 50, 50, '#336699'); _child.bottom = 0 _parent.addChild(_child); 按理说 我设置了额child的bottom...

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

60. 绘制矩形与圆角矩形(TypeScript-LayaAir基础篇(TS)-矢量图) [ 79%]

# 绘制矩形与圆角矩形 ### 一、用drawRect方法绘制矩形 在API中搜索`laya.display.Graphics`类可以查看到该API的各种矢量绘图方法。其中"drawRect();"方法用于绘制矢量矩形。该方法的详细说明如下图所示: ​ ![blob.png](img/1.png) ​ (图1) ...

来源: Laya2.0_文档 发布时间: 20210715