大约有 427 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0054 秒)
Laya_社区(272) Laya3.0_api(43) Laya_示例(35) Laya2.0_文档(29) Laya3.0_文档(17) laya_api(15) Laya2.0_api(15) Laya2.0_示例(1)
...ationAll Packages | All Classes | Index | Frames No Frames RenderableSprite3DProperties | Methods | Events | Constants Packagelaya.d3.coreClasspublic class RenderableSprite3DInheritanceRenderableSprite3D Sprite3D ComponentNode Node EventDispatcher ObjectSubclasses Glitter, MeshSprite3D, Sh...
来源: laya_api 发布时间: 20170929
...后再用load下载这些关联文件,最后使用的时候就用 laya.sprite3D.load去创建该3d对象,或者在下完关联文件的时候,用 laya.sprite3D.load 创建一次3d对象 ,然后其他地方用的时候就可以直接 laya.loader.getRes()获取了 这是我目前的一个...
来源: Laya_社区 发布时间: 20180726
...ographicVerticalSize = 400; //这个物体里摄像机更近 var sp = Laya.Sprite3D.load('res/01/mfs_01.lh'); scene.addChild(sp); sp.on(Laya.Event.HIERARCHY_LOADED, this, function(){ sp.transform.localPosition = new Laya.Vector3(1, 1, 1); var scale = 1; var v3 = sp.transform.localScale; v3.x = scale...
来源: Laya_社区 发布时间: 20170504
...粒子特效,加载完成不回调 this.lz = this.sceneP.addChild(Laya.Sprite3D.load("res/h5/LayaScene_Effect/Effect.lh")) as Laya.Sprite3D; this.lz.once(Event.HIERARCHY_LOADED, this,function():void{ console.error("改变大小"); }); 之前是按照ls导出的不回调,你们在线技术说场...
来源: Laya_社区 发布时间: 20180327
3d模型释放后重新加载异常 通过Laya.Sprite3D.load()加载的lh文件生成的模型,随后通过sprite.destroy释放了,再后来又加载同一份模型,这时异常了,显示childs=null,请问该怎么解决 2016-12-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没...
来源: Laya_社区 发布时间: 20161217
...lasspublic class ShuriKenParticle3DInheritanceShuriKenParticle3D RenderableSprite3D Sprite3D ComponentNode Node EventDispatcher Object ShuriKenParticle3D 3D粒子。 Public Properties Hide Inherited Public Properties Show Inherited Public Properties PropertyDefined By active : Boolean 获取自身...
来源: laya_api 发布时间: 20170929
...thographic = true; camera.orthographicVerticalSize = 5; this.effRes = Laya.Sprite3D.load(resUrl); this.effRes.on(Laya.Event.HIERARCHY_LOADED, this, function(){ this.eff1 = scene.addChild( Laya.Sprite3D.instantiate(this.effRes)); this.eff1.transform.position = new Laya.Vector3(0,0,50); this.eff1.tran...
来源: Laya_社区 发布时间: 20180503
...毁释放内存 ###### *version :2.0.2beta Update:2019-5-8* Scene3D、Sprite3D在调用 `destroy()` 之后,精灵所引用的材质,纹理,网格并不会跟随精灵的销毁而一起销毁。这些残留下的资源需要分别使用`Laya.loader.getRes(url:String)`接口获取到资源...
来源: Laya2.0_文档 发布时间: 20210715
...... ], XXX, XXX); 加载: var effect = actor.mView.root.addChild(Laya.Sprite3D.load("Resources/Player/nan_jianshi/Effect/dmc_skycity_attack1/.lh")); effect.once(Laya.Event.HIERARCHY_LOADED, this, function(){ var particle = effect...
来源: Laya_社区 发布时间: 20170614
...e = Laya.TextureCube.load("res/sky/skyCube.ltc"); camera.sky = skyBox; var sprite3D = scene.addChild(Laya.Sprite3D.load("cj03/LastHopeScene.lh")); //sprite3D.transform.localScale = new Laya.Vector3(0.2, 0.2, 0.2); sprite3D.once(Laya.Event.HIERARCHY_LOADED, null, function(sprite) { //console.log(scen...
来源: Laya_社区 发布时间: 20170707