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

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

51. 缓存清除方法clearTextureRes [ 70%]

...oader.getAtlas(url);             var res=arr ? laya.net.Loader.getRes(arr[0]):laya.net.Loader.getRes(url);             if (res.bitmap){                 if (Render.isConchApp){                     if (res.bitmap.source.releaseTexture){   ...

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

52. 3d模型资源,加载后AddChild会报错,请教一下什么原因。 [ 70%]

...1():void{ trace("complete load role"); var sprite3D:Sprite3D = Laya.loader.getRes("laya_assert/LayaScene_role/role.lh"); mainScene.addChild(sprite3D); } 上面是我加载的代码。mainScene是我缓存的scene变量。 附件 : --> 2018-11-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...

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

53. 加载.lh文件 运行后黑屏 无法显示 [ 69%]

...         var layaMonkey:Laya.Sprite3D = scene.addChild(Laya.Loader.getRes("Export/LayaScene_JJF/Conventional/JJF.lh")) as Laya.Sprite3D;         //var layaMonkey = Laya.Loader.getRes("Export/LayaScene_JJF/Conventional/JJF.lh");         layaMonkey.addComponent(MonkeyScript); ...

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

54. Animation创建动画模板问题 [ 69%]

...Childhood/EARLY_GAME_001/bin/libs/laya.core.js:4418:12) at Function.Loader.getRes (file:///E:/EarlyChildhood/EARLY_GAME_001/bin/libs/laya.core.js:11178:32) at Graphics.__proto.loadImage (file:///E:/EarlyChildhood/EARLY_GAME_001/bin/libs/laya.core.js:1808:19) at Function.Animation.createFrames (file:...

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

55. laya.resource.Resource_API3.0 [ 69%]

...ource.ts:147 如果设置一个已缓存的资源obsolute为true,则 1)getRes仍然可以返回这个资源; 2)下次加载时会忽略这个缓存而去重新加载。。 Returns boolean Defined in laya/resource/Resource.ts:151 如果设置一个已缓存的资源obsolute为true,则 1)g...

来源: Laya3.0_api 发布时间: 20231115

56. 直接new sprite 跟graphics.drawTexture 有什么区别 [ 69%]

...跟graphics.drawTexture 有什么区别 var downScoreTexture = Laya.loader.getRes("img/game/kc/score.png"); var _downScore = new Sprite(); _downScore.pos(150,130); _downScore.graphics.drawTexture(downScoreTexture); touPane.addChild(_downScore); 这个东西,跟 直接new sprite 然后loadimage 有...

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

57. Laya.loader.load 加载场景报错 [ 69%]

... 模型url, Laya.Handler.create(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...

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

58. PBR标准材质实时阴影渲染问题 [ 68%]

... super(); //初始化引擎 Laya3D.init(0, 0); var scene_360 = Laya.loader.getRes("LayaScene_PUCHENG3D/Conventional/PUCHENG3D.ls") as Laya.Scene3D; Laya.stage.addChildAt(scene_360, 0); var camera = (scene_360 as Laya.Node).getChildByName('Main Camera') as Laya.Camera; // var camera = new Laya.Camera...

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

59. unity导出的3D动画模型,导入 laya环境报错: node._setParent is not a function [ 68%]

... node._setParent is not a function var role3D: Laya.Sprite3D = Laya.loader.getRes("res/lk4.lh") as Laya.Sprite3D; //加载到场景 scene.addChild(role3D);  //此处报错 var ani = role3D.getComponent(Laya.Animator) as Laya.Animator; //播放攻击状态 ani.play(); chrome 调试:  addChild(nod...

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

60. 如何解析json文件并获取某对象值? [ 68%]

..., null, Loader.JSON); } private onLoaded() { var json : JSON = Laya.Loader.getRes("res/atlas/resTest0.json"); var jsTx = JSON.stringify(json); } 已经通过上面代码获取整个json内容,可我该如何获取我的json中的groups 数组的所有内容呢? 附件 : --> 2017-10-16 添加评...

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