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

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

561. sound manager在MOUSE_OVER事件中无法播放 [ 45%]

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

562. 画了一个封闭的曲线,获取鼠标点击处的像素,为何坐标对不上导致拿不到正确位置的Texture? [ 45%]

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

563. 飞机大战js源码中判断语句问题 [ 45%]

...示意图 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

564. 组件属性的代码使用 · LayaAir3.0文档 · LAYABOX [ 45%]

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

565. 在微信小游戏中使用list,兼听不到mouseHandler跟selectHandler。 [ 45%]

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

566. [Error] TypeError: null is not an object (evaluating 'this._style._tf') [ 45%]

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

567. 为什么Laya.Panel的子节点在(0,0)位置会不显示呢? [ 44%]

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

568. 分享:销毁龙骨动画! [ 44%]

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

569. JavaScript heap out of memory,ide编译不了代码 [ 44%]

...es\rollup\dist\rollup.js 然后cmd 输入下面命令node --max_old_space_size=2048  ide的rollup.js完整目录地址。 就可以解决编译内存溢出的问题。不过,最好先确保自己的项目代码没有出现死循环或其他引起的内存溢出在考虑这个。要不,就算...

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

570. 版本号:2.0.2 beta, 在sound文件夹下音乐播放不了,放入到res文件夹下可播放 [ 44%]

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