大约有 821 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0048 秒)
Laya_社区(448) Laya3.0_api(77) laya_api(70) Laya2.0_api(64) Laya2.0_文档(50) Laya2.0_示例(39) Laya_示例(37) Laya3.0_文档(36)
... var button: Sprite = new Sprite(); button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2, 8, "25px SimHei", "#FFFFFF", "center"); ...
来源: Laya_社区 发布时间: 20201203
....drawCurves(0,0, points, "#ff0000", 15); Laya.stage.addChild(_view); _view.size(80, 100); _view.on(Event.CLICK, this, __clickHandler); } private function __clickHandler():void { trace(_view.stage.mouseX + "---" + _view.stage.mouseY); /*获取所画曲线鼠标点击处的像素,为何坐标对不...
来源: Laya_社区 发布时间: 20180319
...示意图 1.png2.png3.png4.png 2016-08-10 0 0 分享 微博 QZONE 微信 sizee 赞同来自: if(box.y>=852) { box.y=0 } 这样编写不是更直接更容易理解 2017-02-24 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Maestro ...
来源: Laya_社区 发布时间: 20160810
...{ type : Laya.Sprite}) public spr: Laya.Sprite; onAwake(): void { this.spr.size(512, 313); //设置Sprite大小 this.spr.loadImage("atlas/comp/image.png"); //添加纹理 } } 效果如图1-2所示: (图1-2) 1.2 3D节点的基础使用 首先,如动图1-3所示,将场景中已经添加好...
来源: Laya3.0_文档 发布时间: 20241014
...ar WID = 373, HEI = 85; function Item() { Item.__super.call(this); this.size(WID, HEI); this.img = new Image(); this.addChild(this.img); this.setImg = function(src) { this.img.skin = src; } } Laya.class(Item, "Item", Box); // 主要逻辑代码 var Stage = Laya.Stage; var List = La...
来源: Laya_社区 发布时间: 20180731
...ya.core.js:10340) run (laya.core.js:710) event (laya.core.js:494) setScreenSize (laya.core.js:18495) _changeCanvasSize (laya.core.js:18371) run (laya.core.js:9832) _update (laya.core.js:9576) render (laya.core.js:18561) _loop (laya.core.js:18519) loop (laya.core.js:5442) 2018-10-20 添加评论 免...
来源: Laya_社区 发布时间: 20181020
...sp.y = 1; // sp.x = 1; sp.graphics.drawRect(0, 0, 200, 200, "#00FF00"); sp.size(200,200); Laya.stage.addChild(panel); //Laya.stage.addChild(new TestUI()); 2017-02-20 0 2 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Devilsparta 相关问题...
来源: Laya_社区 发布时间: 20170217
... var w:int = 110; var h:int = 40; var button:Sprite = new Sprite(); button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2 , 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(button); return button; } private function parseComplete(fac:Tem...
来源: Laya_社区 发布时间: 20170406
...es\rollup\dist\rollup.js 然后cmd 输入下面命令node --max_old_space_size=2048 ide的rollup.js完整目录地址。 就可以解决编译内存溢出的问题。不过,最好先确保自己的项目代码没有出现死循环或其他引起的内存溢出在考虑这个。要不,就算...
来源: Laya_社区 发布时间: 20191225
...ber = 110; var h: number = 40; var button: Sprite = new Sprite(); button.size(w, h); button.graphics.drawRect(0, 0, w, h, "#FF7F50"); button.graphics.fillText(label, w / 2, 8, "25px SimHei", "#FFFFFF", "center"); Laya.stage.addChild(button); return button; } //private musicString:string = "./sou...
来源: Laya_社区 发布时间: 20190421