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

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

1. graphics 绘制线条粗细不一样 [ 100%]

...graphics 绘制线条粗细一样 canvas 正常 版本最新 this.graphics.drawRect(0,0,100,100,null,"#000000",2) 效果: 代码:             var sp:Sprite = new Sprite();             this.addChild(sp);             sp.pos(200, 200);             sp.graphics.d...

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

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

... 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

3. Tween回调方法里如何带参数[ 93%]

...例子我们看下 测试代码: var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,100,100,"#FF0000"); Laya.stage.addChild(sp); Tween.to(sp,{x:300,y:300,alpha:0.5},1000,null,Handler.create(this,function():void { sp.destroy(); })); Complete事件你没写错,就是那么写的     2017-06-08...

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

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

...对象呀? 请问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

5. 坐标系原点 [ 85%]

... 微信 mrchenx 赞同来自: var _parent = new Sprite(); _parent.graphics.drawRect(0, 0, 500, 500, '#ff0000'); Laya.stage.addChild(_parent); var _child = new Sprite(); _child.graphics.drawRect(0, 0, 50, 50, '#336699'); _parent.addChild(_child);就像上面那样,我需要在addChild的时候,_c...

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

6. 如何降低graphics绘制产生的drawcall [ 85%]

... for (var j = 0; j < 100; j++) {             img.graphics.drawRect(i, j, 2, 2, "#CD5C5C");         }     } 这样绘制会有10000个drawcall 官方有能降低drawcall的方法吗 2020-03-23 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...

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

7. 请问LayaAir如何绘制一个渐变矩形? [ 80%]

...变矩形? 请问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_社区 发布时间: 20170420

8. graphics颜色填充fillColor问题 [ 80%]

...dient.addColorStop(0,"white"); gradient.addColorStop(1,"red"); sp.graphics.drawRect(0, 0, 150, 150, gradient); sp.graphics.loadImage("res/colorpicker_overlay.png",0,0); //添加到舞台 Laya.stage.addChild(sp);第二个问题:目前还不支持,后面安排在Canvas模式和Webgl模式都会支...

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

9. 关于js继承类class的参数问题 [ 79%]

...m.__super.call(this);//初始化父类      *         this.graphics.drawRect(0, 0, 100, 20, "#ff0000");      *         var label = new laya.ui.Label();//创建一个 Label 类的实例对象 label 。      *         label.text = "100000";//设置 label 的文本内容。     ...

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

10. 关于js继承类class的参数问题 [ 78%]

...m.__super.call(this);//初始化父类      *         this.graphics.drawRect(0, 0, 100, 20, "#ff0000");      *         var label = new laya.ui.Label();//创建一个 Label 类的实例对象 label 。      *         label.text = "100000";//设置 label 的文本内容。     ...

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