大约有 1,781 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0051 秒)
Laya_社区(1430) Laya3.0_api(102) Laya2.0_文档(77) Laya2.0_api(64) Laya2.0_示例(37) Laya_示例(36) Laya3.0_文档(26) laya_api(9)
... Sprite(); mask.graphics.beginFill(0xFF0000); mask.graphics.drawCircle(0,0,50); mask.pos(100,100) mask.graphics.endFill(); sp.mask=mask ``` **LayaAir引擎中正确的用法示例:** ```java Laya.init(600,400) var sp:Sprite=new Sprite(); sp.graphics.drawRect(0,0,200,200,'#FFFF00'); Laya.stage.addC...
来源: Laya2.0_文档 发布时间: 20210714
...维码下方显示一个http地址,实例中的地址为`http://10.10.20.50:8900/bin/h5/index.html`,如图3所示: ![图3](img/3.png) 图3 步骤三:点击二维码界面中的,“浏览器打开”按钮,则会在浏览器中以`http://10.10.20.50:8900/bin/h5/index.html`方式打开,打...
来源: Laya2.0_文档 发布时间: 20210715
...式奇奇怪怪 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为0 应该是 ...
来源: Laya_社区 发布时间: 20170222
...金豆奖励(奖励金额可以配置) 平时排名 1、日榜(前 50 名) 2、总榜(前 50 名) 消耗 1、开始一局需要消耗 20 金豆 (另外一个系统 api 对接金豆系统) 2、赢一局可以获得 40 金豆 深圳本地优先,方便对需求跟进度 联系 qq base...
来源: Laya_社区 发布时间: 20180508
...置防穿后仍有几率会穿透 问题状态 最新活动: 2018-11-28 14:50 浏览: 1484 关注: 3 人 大林 • 2018-11-28 14:50 native和引擎版本就是2.05,最新的。代码就是laya.webgl.js 14483行,设置mask为空的时候,value为空, value.cacheAs会报错
来源: Laya_社区 发布时间: 20181128
...索引时 所有的Box的y轴都要多加上当前多显示图片的高度50 if(this.index_num<index) { cell.y = 50+index*30; } //小于点击索引时 所有的Box的y轴恢复原位 if(this.in...
来源: Laya_社区 发布时间: 20190522
...址,但是这个地址上的图片并不存在 https://3dparking-1256769450.cos.ap-shanghai.myqcloud.com/test/res/atlas/main.png 2019-06-13 0 12 分享 微博 QZONE 微信 kylin 赞同来自: 目前来看,即使加了版本管理,引用云上资源仍然引用的无版本号的资源。现...
来源: Laya_社区 发布时间: 20190613
...s: any = htmlCanvas.sourse; canvas.toTempFilePath({ x: 100, y: 200, width: 50, height: 50, destWidth: 100, destHeight: 100, fileType: "png", quality: 1.0, success: (res) => { console.log(res.tempFilePath); } }) } 报的是 gameThirdScriptError ImageData is not defined ReferenceError: ImageData...
来源: Laya_社区 发布时间: 20200108
...#ff0000", 3); //画连续直线 sp.graphics.drawLines(176, 58, [0, 0, 39, -50, 78, 0, 117, 50, 156, 0], "#ff0000", 5); //画曲线 sp.graphics.drawCurves(352, 58, [0, 0, 19, -100, 39, 0, 58, 100, 78, 0, 97, -100, 117, 0, 136, 100, 156, 0], "#ff0000", 5); //画矩形 2019-05-30 添加评论 免费帖...
来源: Laya_社区 发布时间: 20190530
...地图 this.tMap = new Laya.TiledMap(); var viewRect = new Laya.Rectangle(-50,-50,Laya.Browser.width,Laya.Browser.height); this.tMap.createMap("res/map/map.json",viewRect); // 精灵 var sp = new Laya.Sprite(); sp.graphics.drawRect(0, 0, 100, 100, "#FF0000", "#0000FF", 1) sp.zOrder = 1000; 请...
来源: Laya_社区 发布时间: 20180721