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

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

121. 请问移动端Chrome怎么设置全屏 [ 86%]

... 1 个回复 wudi199553 赞同来自: function launchFullscreen(element) { if(element.requestFullscreen)  { element.requestFullscreen();  }  else if (element.mozRequestFullScreen) { element.mozRequestFullScreen();  }  else if (element.webkitRequestFullscreen)  { element.webkitRequestFullscreen...

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

122. 如何使用vscode编译laya项目 [ 86%]

...路径 let ideModuleDir; let workSpaceDir; for(var argv of process.argv) { if(argv.indexOf("--cwd=") == 0) { ideModuleDir = argv.split("=")[1] + "\\node_modules\\"; } else if(argv.indexOf("--gulpfile=") == 0) { workSpaceDir = argv.split("=")[1].replace("/.laya/compile.js", ""); } }2、修改typescri...

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

123. 用Geolocation获取地理位置信息(ActionScript-LayaAir基础篇(AS3)-硬件设备相关) [ 86%]

...de + '°, ' + info.latitude + '°),精确度:' + info.accuracy + 'm'); if(info.altitude != null) trace('海拔:' + info.altitude + 'm' + (info.altitudeAccuracy != null ? (',精确度:' + info.altitudeAccuracy + 'm') : '')); if(info.heading != null && !isNaN(info.heading)) trace('方向:'...

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

124. 监听按键事件怎么写呀,TS的 [ 86%]

...nt): void{           console.log(e.keyCode);             if(e.keyCode==37){//左            this.hero.pos(this.hero.x-100,this.hero.y);                   }else if(e.keyCode==39){//右            this.hero.pos(this.hero.x+100,this.hero.y);    ...

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

125. 关于网络监听(TypeScript-LayaNative原生服务-LayaNative基础文档) [ 86%]

...式进行监听网络变化,代码如下: JS代码如下 ```javascript if( conch ) { conch.setNetworkEvtFunction(function(type) { alert(type) }); } ``` AS代码如下: ```javascript if ( Render.isConchApp) { Browser.window["conch"].setNetworkEvtFunction(function(type):void { alert(type) }); } ...

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

126. 多点触控的使用(ActionScript-3D基础(AS3)-LayaAir3D之鼠标交互) [ 86%]

...function onUpdate():void { var touchCount:int = _scene.input.touchCount(); if (1 === touchCount){ //判断是否为两指触控,撤去一根手指后引发的touchCount===1 if (isTwoTouch){ return; } _text.text = "触控点为1"; //获取当前的触控点,数量为1 var touch:Touch = _scene.inp...

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

127. 向官方反映1.75引擎库后 事件执行 发生的bug [ 86%]

...             var len=this._eventList.length;             if (!len)return;             var _this=this;             var i=0;             var localevnetList = this._eventList.slice();             this._eventList.length = 0;             whil...

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

128. [LayaAir3]list.selectHandler [ 86%]

...= this._list.getChildAt(index).getChildAt(0) as Laya.CheckBox;         if(checkBoxItem!=null){                         switch(checkBoxItem.name.trim()){                 case "0":{                                       console.log("目录");           ...

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

129. 启动画面LoadingView(TypeScript-LayaNative原生服务-LayaNative基础文档) [ 86%]

...求进行修改: ```javascript window.loadingView = new loadingView(); if(window.loadingView) { window.loadingView.loadingAutoClose=true;//true代表引擎控制关闭时机。false为开发者手动控制 window.loadingView.bgColor("#FFFFFF");//设置背景颜色 window.loadingView.setFontColor("...

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

130. 多点触控的使用(JavaScript-3D基础(JS)-LayaAir3D之鼠标交互) [ 86%]

...Update方法 onUpdate() { var touchCount = this._scene.input.touchCount(); if (1 === touchCount){ //判断是否为两指触控,撤去一根手指后引发的touchCount===1 if (this.isTwoTouch){ return; } this._text.text = "触控点为1"; //获取当前的触控点,数量为1 var touch = this._...

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