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

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

791. 设置自动竖屏后 打包APP 安装到手机后显示黑屏 不设置自动竖屏又正常 [ 49%]

...)             Laya.loader.load("res/atlas/gameUI.atlas",Handler.create(this,this.gameStart));                                   } 2018-01-05 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4 ...

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

792. 时间轴动画(TypeScript-LayaAir基础篇(TS)-动画基础) [ 49%]

...行onLoaded回调方法 Laya.loader.load("res/atlas/ui.atlas",Laya.Handler.create(this,this.onLoaded)); ``` 第二步:创建Animation实例,加载动画文件 ```typescript //创建一个Animation实例 var tl:Laya.Animation = new Laya.Animation(); //加载动画文件 tl.loadAnimation("TimeLine...

来源: Laya2.0_文档 发布时间: 20210715

793. 调用动画结束on方法,报错this.zombieAnimator.on is not a function [ 49%]

...ya.Sprite3D.load("res/threeDimen/skinModel/Zombie/Zombie.lh", Laya.Handler.create(this, function(zombie:Laya.Sprite3D):void { scene.addChild(zombie); this.zombieAnimator = (zombie.getChildAt(0) as Laya.Sprite3D).getComponent(Laya.Animator) as Laya.Animator;//获取Animator动画组件 this.zombieAni...

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

794. ShaderPass介绍(TypeScript-3D基础(TS)-LayaAir3D之Shader) [ 49%]

...Model/LayaMonkey/Assets/LayaMonkey/LayaMonkey-LayaMonkey.lm", Laya.Handler.create(this, function(mesh) { var layaMonkey = scene.addChild(new Laya.MeshSprite3D(mesh)); layaMonkey.transform.localScale = new Laya.Vector3(0.3, 0.3, 0.3); layaMonkey.transform.rotation = new Laya.Quaternion(0.7071068, 0, ...

来源: Laya2.0_文档 发布时间: 20210715

795. TiledMap制作横板地图 报错 [ 49%]

...报错。 以下是导入脚本。 this.map=new Laya.TiledMap(); this.map.createMap("res/map/map.json",new Laya.Rectangle(0,0,Laya.Browser.width,Laya.Browser.height), Laya.Handler.create(this,this.onLoaded));报错的地方为:laya.tiledmap.js第178行: var tImageArray=relativePath.split("/");...

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

796. 分享一个Shader版的CoolDown实现 [ 49%]

...r> = null): void {             this.vBuffer = Laya.VertexBuffer2D.create();             this.iBuffer = Laya.IndexBuffer2D.create();             this.ibData = null;             var vbArray: Array<number>;             var ibArray: Array<number>;        ...

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

797. CPU优化方式(TypeScript-2D进阶篇(TS)-性能优化) [ 49%]

...ew Laya.Sprite(); sp.loadImage("res/apes/monkey2.png",0,0,0,0,Laya.Handler.create(this,function() { console.log(sp.width,sp.height); })); Laya.stage.addChild(sp); ``` loadImage在加载完成的回调函数触发之后才可以正确获取宽高。 1. **直接调用size设置:** ```typescript Laya...

来源: Laya2.0_文档 发布时间: 20210714

798. 动画不显示 [ 49%]

动画不显示 使用  Animation.createFrames(  创建动画模版的动画,在调试器和浏览器上显示都正常 但是打包成测试APK,动画却不显示。 游戏有2个图层 ,地图层和一个角色动画,打包成APK后,地图层正常显示,角色动画不显示,打...

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

799. 怎么获取手机相册内容 [ 49%]

... var skins:Array = [ "res/button-1.png" ]; Laya.loader.load(skins, Handler.create(this, onUIAssetsLoaded)); } public function onUIAssetsLoaded():void { var btn:Button = new Button("res/button-1.png"); Laya.stage.addChild(btn); //创建隐藏的file并且把它和按钮对齐。达到位置一致,...

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

800. QQ小游戏开发者工具环境下,已经被本地缓存的图片的加载回调不触发的问题 [ 49%]

...过后,问题出现了,Laya.loader.load("res/atlas/comp.json", Handler.create(this, onLoaded), null, Loader.ATLAS);这里的onLoaded函数不会被触发,导致后续界面不显示。如果点QQ小程序开发者工具里的清理缓存,界面又再次可以显示,再刷新的话,又不...

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