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

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

211. SCALE_FIXED_WIDTH适配屏幕的问题 [ 82%]

...           Laya.Browser.document.title = 'GG游戏;             if (Laya.Browser.onPC) {                 //设置舞台缩放模式                 Laya.stage.scaleMode = Laya.Stage.SCALE_SHOWALL;                 Laya.stage.screenMode = Laya.Stage.SCREEN_NONE;   ...

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

212. 如何在手机端实现全屏显示,隐藏地址栏等工具框? [ 82%]

...的代码中可以考虑封装下面这段代码 var docElm=document.body; if (docElm.requestFullscreen){      docElm.requestFullscreen();  }else if (docElm.msRequestFullscreen){      docElm.msRequestFullscreen();  }else if (docElm.mozRequestFullScreen){      docElm.mozRequestFullScreen()...

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

213. "TS语言开发H5游戏微信飞机大战"中,为什么是用this.bg1.y+this.y来做判断呢? [ 81%]

...做判断呢? 如题,正确的代码是:onLoop():void{ this.y+=50; if (this.bg1.y+this.y>=852) { this.bg1.y-=852*2; } if (this.bg2.y+this.y>=852) { this.bg2.y-=852*2; } }我尝试的代码是: onLoop():void{ this.y+=50; if (this.bg1.y>=852) { this.y-=852*2; this.bg1.y-=852*2; } if (...

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

214. 设置适配SCALE_FIXED_WIDTH,结果少部分andriod机型不能正确适配屏幕 [ 81%]

...           Laya.Browser.document.title = 'GG游戏;             if (Laya.Browser.onPC) {                 //设置舞台缩放模式                 Laya.stage.scaleMode = Laya.Stage.SCALE_SHOWALL;                 Laya.stage.screenMode = Laya.Stage.SCREEN_NONE;   ...

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

215. 鼠标交互-双指旋转(多点触控) [ 81%]

..., this, onMouseDown); } function onMouseDown(e) { var touches = e.touches; if (touches && touches.length == 2) { preRadian = Math.atan2( touches[0].stageY - touches[1].stageY, touches[0].stageX - touches[1].stageX); Laya.stage.on(Event.MOUSE_MOVE, this, onMouseMove); } } function onMouseMove(e) { va...

来源: Laya_示例 发布时间: 20241119

216. js环境下使用Loader加载图片在Sprite对象的.on函数无效 [ 81%]

...//加载显示图片,坐标位于0,0 var temptexture=Loader.getRes(pic); if (typeof(temptexture)!="undefined"){ this.bgimg.texture=Loader.getRes(pic) }else{ this.bgimg.loadImage(pic); } this.donghua=true; this.bgimg.x=x; this.bgimg.y=y; this.bgimg.mvtox=movetox; this.bgimg.mvtoy=movetoy; this.bgim...

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

217. 【分享】通过命令行调用compile.js编译,不使用laya-cmd [ 81%]

...)>>compile_temp.js echo console.log(str)>>compile_temp.js echo if(str.match(/^\s*Error\:/)){app.exit(1);return;}>>compile_temp.js echo let isTasksComplete = str.match(/^laya\.ide\.complete$/m)>>compile_temp.js echo if (isTasksComplete){>>compile_temp.js echo app.exit(0)...

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

218. 小游戏子域程序加载到图集后,取图集内资源报错。 [ 81%]

... */ public static function sendAtlasToOpenDataContext(url:String):void { if(!MiniAdpter.isZiYu) { var atlasJson:Object = Loader.getRes(URL.formatURL(url)); if(atlasJson) { var textureArr:Array = (atlasJson.meta.image as String).split(","); //构造加载图片信息 if (atlasJson.meta && atl...

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

219. spine 回调函数的参数没有效果 [ 81%]

...同来自: 有spine 源文件吗 2018-05-31 0 0 分享 微博 QZONE 微信 IF.T 赞同来自: 导出文件里面可以看到events 的参数的 2018-05-31 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 IF.T 相关问题 骨骼动画播...

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

220. Sprite.loadImage();问题 [ 81%]

...lic function initMap(texture:Texture, bgID:int):void{             if(this.oldBgID != bgID){                 oldBgID = bgID;                 if(oldTexture){                     oldTexture.destroy(true);                     oldTexture = nu...

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