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

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

11. layaFlash 无法使用 Loader 加载外部SWF和图片 [ 78%]

...{ public function SwfBinary() { super(); if(stage) { init(); } else { this.addEventListener(Event.ADDED_TO_STAGE,init); } } private function init(e:Event=null):void { var loader:Loader=new Loader(); var context:LoaderContext=new LoaderContext(false,ApplicationDomain.currentDomain); loader.contentLoa...

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

12. IOS微信内置浏览器陀螺仪问题 Laya2.4.0bate [ 78%]

...有回调 已经测试过的方式: 以下三种方式都无返回 window.addEventListener('devicemotion', function(event){}) window.addEventListener('deviceorientation', function(event)  {}) Laya.Gyroscope.instance.on(Laya.Event.CHANGE, this, this.onDeviceorientation);  连接打开方式都...

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

13. swf转成H5资源显示超出原有范围 [ 78%]

...    {             if (stage) init();             else addEventListener(Event.ADDED_TO_STAGE, init);         }                  private function setWindowFullSize() : void         {             var stageW:int = 0;             var stageH:i...

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

14. LayaAir引擎AS3与Flash原生AS3的开发差异(ActionScript-简介篇(AS3)-LayaAir引擎简介) [ 78%]

...; mask.graphics.drawCircle(0,0,50); mask.graphics.endFill(); sp.mask=mask; addEventListener(Event.ENTER_FRAME,function():void { mask.x++; mask.cacheAsBitmap=true; sp.cacheAsBitmap=true; }); ``` **LayaAir引擎中正确的用法示例:** ```java Laya.init(600,400) var sp:Sprite=new Sprite(); sp.gra...

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

15. LayaAir引擎AS3与Flash原生AS3的开发差异(ActionScript-简介篇(AS3)-LayaAir引擎简介) [ 78%]

...; mask.graphics.drawCircle(0,0,50); mask.graphics.endFill(); sp.mask=mask; addEventListener(Event.ENTER_FRAME,function():void { mask.x++; mask.cacheAsBitmap=true; sp.cacheAsBitmap=true; }); ``` **LayaAir引擎中正确的用法示例:** ```java Laya.init(600,400) var sp:Sprite=new Sprite(); sp.gra...

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

16. 重力感应 Accelerator 发布微信游戏后失效。是因为什么? [ 75%]

...,别的代码里就可以按照引擎示例里的进行开发了 window.addEventListener('deviceorientation', this.oriListener, false);     window.addEventListener('MozOrientation', this.oriListener, false); //为firefox所用     window.addEventListener('devicemotion', this.oriListener, f...

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

17. 怎么实现同一个工程内分包? [ 71%]

...ain extends Sprite { public function Main():void { if (stage) init(); else addEventListener(Event.ADDED_TO_STAGE, init); } private function init(e:Event = null):void { removeEventListener(Event.ADDED_TO_STAGE, init); this.stage.scaleMode = StageScaleMode.NO_SCALE; this.stage.align = StageAlign.TOP_L...

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

18. 添加舞台事件问题? [ 70%]

添加舞台事件问题? this.addEventListener(Event.ADDED_TO_STAGE, addtoStageHandler); as3的添加舞台事件,Laya有木有类似的事件啊? 2017-03-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 ...

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

19. ANDORID 切后台 怎么监听啊 [ 68%]

...我是用这个方法解决的,不知道有没有更好的方法document.addEventListener("visibilitychange", e => { if (document.hidden) { this.onBlur() } else { this.onFocus() } });原文:js检测浏览器切换到后台的方案 2019-11-11 0 0 分享 微博 QZONE 微信 古特软件 赞同...

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

20. TS setExternalLinkEx問題 [ 68%]

...stAnimationFrame(render); } window.requestAnimationFrame(render); document.addEventListener('touchstart',()=>{ if(Browser.window.conch){ var l = 50; var t = 50; var w = window.innerWidth-l*2; var h = window.innerHeight-t*2; Browser.window.conch.setExternalLinkEx('http://www.layabox.com',l,t,w,h,t...

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