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

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

431. Laya.loader.load 加载场景报错 [ 71%]

...e(this, function(){ this.scene = Laya.loader.getRes(模型url); Laya.stage.addChild(this.scene); }),null, null, 1, true, "scene1"); 执行后,浏览器报 : laya.core.js:13290 Uncaught TypeError: node._setParent is not a function at Stage.__proto.addChild (laya.core.js:13290) at Main.<anonymo...

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

432. 源码List的一次代码错误 [ 71%]

... * cellWidth, (this._isVertical ? startY : 0) * cellHeight); this._content.addChild(cacheBox); this._content.optimizeScrollRect = true; box = cacheBox; } else { [b] var arr = []; [/b] for (var i = this._cells.length - 1; i > -1; i--) { var item = this._cells[i]; item.removeSelf(); arr.push(item);...

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

433. 通过getChildByName找到的dialog节点使用show方法后, 再次getChildByName查找, 结果为null [ 71%]

...ll let dialog = new laya.ui.Dialog();  dialog.name = 'Dialog' parentNode.addChild(dialog);    let childNode = parentNode.getChildByName('Dialog'); childNode.show();   console.log(parentNode.getChildByName('Dialog'));  // 结果为null   2016-09-13 添加评论 免费帖 --> 分享 微博 QZON...

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

434. 引擎遮罩报错 [ 71%]

... this.itemSpr.cacheAs = 'normal'; this.itemSpr.cacheAsBitmap = false; this.addChild(this.itemSpr); //卡马克 for (var i: number = 0; i < 15; i++) { var attItem: HeadItem = new HeadItem; attItem.x = i * this.OFF_X; this.itemList.push(attItem); this.itemSpr.addChild(attItem); } let maskSp:Laya.Sp...

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

435. 不带格式后缀的图片无法成功加载 [ 71%]

...odee.width = 500 nodee.height = 250 nodee.x = 100 nodee.y = 350 Laya.stage.addChild(nodee) }));上面这个图片无法正常显示,打印 texture 的宽是 undefined,如果是带后缀的图片,比如.jpg就可以正常展示图片。 附件 : --> ImageDemo.zip 2021-10-26 添加评论 免费...

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

436. Panel 的 滑动问题 [ 71%]

...ent.hScrollBarSkin = "";  panelParent.hScrollBar.isVertical = false; this.addChild(panelParent );   _putChild: function (parentName, path, col, row, cellSize, offset, scale)  { var root = this.getChildByName(parentName);        var cell = uiUtils.createSprite(path);       root.addChild(ce...

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

437. 关于遍历产生的sprite的点击事件,急,大神帮看哈 [ 71%]

...0;i<5;i++){    sp=new Laya.Sprite();    sp.index=i;    Laya.stage.addChild(sp); } 类似这样遍历出来的sprite 我怎么给每个sprite添加一个点击事件获得对应的sp.index值呢! 2017-02-21 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀...

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

438. 射线BUG [ 71%]

...t(); this.phasorSpriter3D = new Laya.PhasorSpriter3D(); this.camera = this.addChild(new Laya.Camera(0, 0.1, 100)); this.camera.transform.translate(new Laya.Vector3(0, 1, 3)); //camera.addComponent(CameraMoveScript); this.camera.clearColor = null; } Laya.class(MousePickingScene, "MousePickingScene", ...

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

439. 请问一下,怎么将下面这段AS3代码翻译成LayaAir的API [ 71%]

...; sprite_.graphics.drawRect(100, 50, 200, 90); sprite_.graphics.endFill(); addChild(sprite_); 2017-04-14 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 cuixueying 赞同来自: package { import laya.display.Sprite...

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

440. 使用IDE制作的动画在pc模拟器播放OK在手机端不显示 [ 71%]

...ruto2.ani"); //添加到舞台 var apesCtn = new Laya.Sprite(); Laya.stage.addChild(apesCtn); var _this = this; this.tl.on(this.Event.COMPLETE,this,function(){ _this.tl.stop(); }) console.log(this.tl) this.tl.interval = 1000 / 60; // this.tl.play(); apesCtn.addChild(this.tl); apesCtn.height = 1500; ...

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