大约有 515 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0050 秒)
Laya_社区(424) Laya2.0_文档(51) Laya2.0_示例(16) Laya_示例(12) Laya3.0_文档(6) laya_api(2) Laya3.0_api(2) Laya2.0_api(2)
...; this.scene.addChild(this.camera); Laya.loader.create("res/scene_Effect/Conventional/Effect_zhujue_attack.lh", Laya.Handler.create(this, () => { let item = Laya.loader.getRes("res/scene_Effect/Conventional/Effect_zhujue_attack.lh...
来源: Laya_社区 发布时间: 20191102
...loadEffectComplete():void{ var effect:Laya.Sprite3D = Laya.loader.getRes("res/effect/2/Conventional/bullet.lh"); this.compileShader(effect); //===========放心使用吧================= var myeffect:Laya.Sprite3D = effect.clone(); ...
来源: Laya_社区 发布时间: 20190404
...ir下如何获取图集下的小图资源? 模型资源释放问题 Laya.loader.getRes的声音资源如何用Laya.SoundManager播放? 请问LayaNative2.0能否做到每个子游戏分别打包zip,在Native中解包并跳转? IDE中无法移动资源到另一个目录问题 IDE动画 添加...
来源: Laya_社区 发布时间: 20170215
...字段妖孽无效 直接上代码 var xml:XML = Laya.loader.getRes("res/config.xml"); xml = xml.firstChild; for (var node:XML = xml.firstChild; node != null; node = node.nextSibling) { ...
来源: Laya_社区 发布时间: 20170918
...ER; Laya.stage.scaleMode = "showall"; Laya.stage.bgColor = "#232628"; Laya.loader.load(this.ApePath, Handler.create(this, this.setup)); } private setup(): void { this.normalizeApe(); this.makeRedApe(); this.grayingApe(); } private normalizeApe(): void { var originalApe: Sprite = this.createApe(); th...
来源: Laya2.0_文档 发布时间: 20210715
...5:59 @155*****924:需要些时间的 155*****924 • 2019-05-16 15:16 Laya.loader.create("model/role/1/model.lh", Laya.Handler.create(this, this.OnComplete)); private OnComplete():void { let sprite:Laya.Sprite3D = Laya.loader.getRes("model/role/1/model.lh"); this._scene.addChild(...
来源: Laya_社区 发布时间: 20190516
...xml文件,在layaAir下预加载该xml文件,在加载完成后通过Loader.getRes("xxx.xml")获取,该类型为XMLDom类型,直接针对XMLDom的实例进行逻辑操作即可
来源: Laya_社区 发布时间: 20161201
...itMat = new Laya.PBRStandardMaterial(); var texture: Laya.Texture2D = Laya.loader.getRes("Reference/cardtest.png"); unlitMat.albedoTexture = texture; cardOne.meshRenderer.material = unlitMat; cardOne.meshRenderer.castShadow = true; } }真心求教大佬,怎么才能让在底板下面的部分产...
来源: Laya_社区 发布时间: 20191223
...正确获取宽高。 3. **直接调用size设置:** ```javascript Laya.loader.load("res/apes/monkey2.png", Handler.create(this, function() { var texture:Texture = Laya.loader.getRes("res/apes/monkey2.png"); var sp:Spirte = new Sprite(); sp.graphics.drawTexture(tex...
来源: Laya2.0_文档 发布时间: 20210715
...正确获取宽高。 1. **直接调用size设置:** ```javascript Laya.loader.load("res/apes/monkey2.png",Handler.create(this,function() { var texture=Laya.loader.getRes("res/apes/monkey2.png"); var sp=new Laya.Sprite(); sp.graphics.drawTexture(texture,0,0); sp.size(texture.width,texture.height);...
来源: Laya2.0_文档 发布时间: 20210715