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

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

301. (实现手指控制模型的缩放旋转)触控可以识别 但是导入的模型没有根据触控反应 [ 78%]

...Update(){ var touchCount = this._scene.input.touchCount();         if (1 === touchCount){             //判断是否为两指触控,撤去一根手指后引发的touchCount===1             if(this.isTwoTouch){                 return;         ...

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

302. Maximum call stack size exceeded [ 78%]

... class is automatically generated by LayaAirIDE, please do not make any modifications. */       class GameConfig {         static init() {             //注册Script或者Runtime引用             let reg = Laya.ClassUtils.regClass;     reg("script/GameMain.js",GameMain);     ...

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

303. Dialog:屏蔽点击Dialog之外的区域关闭弹框 [ 78%]

...nce代表创建的弹窗实例   instance.close = function(type = null) { if (!type) return // 这儿加一层限制,所有未知原因的关闭弹窗都不生效 this.closeType = type; Laya.Dialog.manager.close(this); } 2020-07-08 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被...

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

304. 真机环境找不到window---cant find variable: window stack [ 78%]

...   如果着急的,可以先手动改一下game.js 修改后如下: if ((typeof swan !== 'undefined') && (typeof swanGlobal !== 'undefined')) { require("swan-game-adapter.js"); require("libs/laya.bdmini.js"); } else if (typeof wx !== 'undefined') { require("weapp-adapter.js"); require("...

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

305. layaAir TS项目如何引用protoBuf库? [ 78%]

...数         function onAssetsLoaded(err, root){             if (err)                 throw err;             // Obtain a message type             var AwesomeMessage = root.lookup("awesomepackage.AwesomeMessage");             // Create a new messag...

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

306. laya.spine.js问题以及spine.core.js问题 [ 78%]

...pineAni会报错,导致ERROR事件也抛不出去。   private loop() { if (this.assetManager.isLoadingComplete()) { this.parseSpineAni(); return; } if (this.assetManager.hasErrors()) { this.event(Event.ERROR, "load failed:" + this.assetManager.getErrors()); return; } Laya.timer.frameOnce(1, this...

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

307. 路径显示会添加DrawCall,每增加一条路径都会添加,有什么办法降DrawCall [ 78%]

...); } } private function OnShow():void { // TODO Auto Generated method stub if(pop==null){ pop = new TestDialogUI(); pop.btn_close.clickHandler = new Handler(this,function(){pop.parent.removeChild(pop);}); } this.addChild(pop); } private function StartMove(len:int):void { trace("[TestView.StartMove]"...

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

308. 微信小游戏,开放域(排行榜)关闭后再开始游戏与直接开始游戏相比较,掉帧严重! [ 78%]

...榜的代码://移除排行榜 _proto.closeCloudStorage = function () { if (LayaSample.refract && Laya.stage.contains(LayaSample.refract)) LayaSample.refract.removeSelf();//折射层移除舞台 if (Laya.stage.contains(LayaSample.spriteLeaderboard)) {//从舞台移除 LayaSample.textureLea...

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

309. 遮罩导致在ios浏览器上运行黑屏 [ 78%]

...不起作用,就找到laya.core.js 将 static setBlendFunc 方法中的 if 语句删掉   但2.5.0beta应该是起作用的,如果没有切换过类库,建议用新类库试试 2020-01-19 1 2 分享 微博 QZONE 微信 kylin 赞同来自: 试一下2.5.0beta引擎? 2020-01-15 0 1 分享 微...

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

310. 其他(TypeScript-LayaNative原生服务-LayaNative基础文档) [ 78%]

...中,开发者可以通过以下函数设置Debug模式: ```javascript if( window.conch ) { //值为1:表示所有LOGE全部弹出alert //值为2:表示所有LOGE和LOGW全部弹出alert window.conch.config.setDebugLevel(1); } ``` **Tips** *1、conch只能LayaNative环境下调用,在网页...

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