大约有 1,536 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0057 秒)
...e/playerScene.lh').getChildByName('Player' + playerI) as Sprite3D; scene3D.addChild(player); 之后player.destroy();这句之后再重新运行上面的代码,发现报错了player不能被添加到scene3D了,一添加就报了: Sprite3D:Node type must Sprite3D. 2017-08-02 添加评论 免...
来源: Laya_社区 发布时间: 20170802
...List.indexOf(source); if(index<0){ this.__bindList.push(source); } this.addChild(source); this.timer.frameLoop(1,this,this.__updateBinds); } unbind(source:BindSource):void{ let index:number=this.__bindList.indexOf(source); if(index<0){ throw new Error("找不到要删除的绑定内容");...
来源: Laya_社区 发布时间: 20190805
...? let fly = Laya.Pool.getItemByCreateFun("fly", this.fly, this); owner.addChild(fly); fly.play(0, true, "ani1"); fly() { let ani = new Laya.Animation(); ani.loadAnimation("plaen4.ani"); return ani; } 这样写是可以正常播放,但是会有这个警告 ani not found: plaen4.ani#ani1 201...
来源: Laya_社区 发布时间: 20181105
...,200,200); img.graphics.drawTexture(t); img.graphics.restore(); this.addChild(img); 2019-01-11 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 Laya07 相关问题 请问LayaAir中如何使图片以圆形的方式显示? Texture图...
来源: Laya_社区 发布时间: 20190111
...径属性。 ```javascript //创建点光源 this.pointLight = this.scene.addChild(new Laya.PointLight()); //设置点光源颜色 this.pointLight.color = new Laya.Vector3(1.0, 0.5, 0.0); //设置点光源位置 this.pointLight.transform.position = new Laya.Vector3(0.4, 0.4, 0.0); //设置点光源...
来源: Laya2.0_文档 发布时间: 20210714
...3.png') as Texture; //绘制纹理 var box:Sprite=new Sprite(); Laya.stage.addChild(box); box.graphics.drawTexture(texture1,50,50,0,0,new Matrix(),0.5); box.graphics.drawTexture(texture2,200,50,0,0,new Matrix(),0.5); box.graphics.drawTexture(texture3,350,50,0,0,new Matrix(),0.5); box.graphics.drawTe...
来源: Laya_社区 发布时间: 20170519
...过五六个小时后才不会报这个错。。才能进去 用Laya.stage.addChild(new testUI());后,原来让页面还在运行 问题状态 最新活动: 2019-11-18 19:57 浏览: 818 关注: 1 人
来源: Laya_社区 发布时间: 20191118
...要吧正方形拉成长方形。我应该怎么做呢。var box = scene.addChild(new Laya.MeshSprite3D(new Laya.BoxMesh(0.5, 0.5, 0.5))); // var _scale = new Laya.Vector3(2,2,2); box._geometryFilter._sharedMesh._height=1 console.log(box._geometryFilter._sharedMesh) 2018-12-13 添加评论 免费帖...
来源: Laya_社区 发布时间: 20181213
...如何能不编译成一个js文件 sprite设置了cacheas,removechild再addchild之后原先设置的cacheas无效,通过监测面板可以看到。请问这是不是bug? 请问Laya的坐标系是什么样子的 2D的 怎么没有看到有相关的介绍 新版本的插件导出,反射贴...
来源: Laya_社区 发布时间: 20180729
... 1 个回复 180*****998 赞同来自: var box:Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1, 1, 1)))as Laya.MeshSprite3D; 现在好像变了 要这么创建了 2019-05-17 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问...
来源: Laya_社区 发布时间: 20190213