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

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

171. LayaAir引擎AS3与Flash原生AS3的开发差异(ActionScript-简介篇(AS3)-LayaAir引擎简介) [ 72%]

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

172. 运行Hello LayaBox项目(TypeScript-LayaNative原生服务-LayaNative一步一步) [ 72%]

...维码下方显示一个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

173. UI组件对齐方式奇奇怪怪 [ 72%]

...式奇奇怪怪 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

174. 寻深圳, H5 游戏外包,预 3-5w [ 72%]

...金豆奖励(奖励金额可以配置) 平时排名 1、日榜(前 50 名) 2、总榜(前 50 名) 消耗 1、开始一局需要消耗 20 金豆 (另外一个系统 api 对接金豆系统) 2、赢一局可以获得 40 金豆 深圳本地优先,方便对需求跟进度 联系 qq base...

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

175. native版本不支持mask设置为空 [ 72%]

...置防穿后仍有几率会穿透 问题状态 最新活动: 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

176. List 组件做的手风琴Demo [ 72%]

...索引时 所有的Box的y轴都要多加上当前多显示图片的高度50            if(this.index_num<index)         {         cell.y = 50+index*30;         }          //小于点击索引时 所有的Box的y轴恢复原位         if(this.in...

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

177. laya2.x 图集的资源版本管理问题 [ 72%]

...址,但是这个地址上的图片并不存在 https://3dparking-1256769450.cos.ap-shanghai.myqcloud.com/test/res/atlas/main.png   2019-06-13 0 12 分享 微博 QZONE 微信 kylin 赞同来自: 目前来看,即使加了版本管理,引用云上资源仍然引用的无版本号的资源。现...

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

178. 2.3.0截屏问题 [ 72%]

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

179. batch draw 减少draw call [ 72%]

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

180. 写消消乐游戏, 如何在tiledMap格子中添加精灵? [ 72%]

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