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

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

311. HTMLDIVElement设置innerHTML时报错 [ 78%]

...方法为/** *获取对象的宽 */ __getset(0,__proto,'width',function(){ if (this._width)return this._width; return this.contextWidth; },[b]_super.prototype._$set_width[/b]);此次出问题的版本为/** *获取对象的宽 */ __getset(0,__proto,'width',function(){ if (this._width)return this._wi...

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

312. CameraMoveScript.as在哪儿下载群里的有错 [ 78%]

...Down = false; } protected function updateCamera(elapsedTime:Number):void { if (!isNaN(lastMouseX) && !isNaN(lastMouseY)) { var scene:BaseScene = owner.scene; KeyBoardManager.hasKeyDown(87) && camera.moveForward(-0.02 * elapsedTime);//W KeyBoardManager.hasKeyDown(83) && camera...

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

313. 二次开发 · LayaAir3.0文档 · LAYABOX [ 78%]

...译为JS: var os = conchConfig.getOS(); var bridge; var obj = {} as any; if (os == "Conch-ios") { bridge = PlatformClass.createClass("JSBridge");//创建脚步代理 } else if (os == "Conch-android") { //需要完整的类路径,注意与iOS的不同 bridge = PlatformClass.createClass("demo.JSBr...

来源: Laya3.0_文档 发布时间: 20241023

314. 如何监听移动端软键盘的弹出和收回? [ 77%]

...c function TextInput() { //转换成h5项目后获取浏览器的宽度 //[IF-JS]sourceWidth = Laya.window.innerWidth; //转换成h5项目后获取浏览器的高度 //[IF-JS]sourceHeight = Laya.window.innerHeight; if(stage) { init(); } else { this.addEventListener(Event.ADDED_TO_STAGE,init); } } pr...

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

315. 使用百度地图显示当前位置(JavaScript-LayaAir基础篇(JS)-硬件设备相关) [ 77%]

...原始坐标转换为百度坐标 function  convertToBaiduCoord(data) { if  (data.status  ==  0) { var  position  =  data.points[0]; // 设置标注物位置 marker.setPosition(position); map.panTo(position); } } ``` 在转换完成后设置标注物的位置,并且把视角平移到以标...

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

316. 分享:DrawToCanvas内存释放问题! [ 77%]

...//ask.layabox.com/question/6569、https://ask.layabox.com/question/1726) if(htmlC&&texture) { texture.destroy(); } //截屏主要代码 count ++; htmlC=sp.drawToCanvas(800,800,0,0);//绘制 当前Sprite 到 Canvas 上,并返回一个HtmlCanvas。 texture= new Texture(htmlC);//将htmlCanv...

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

317. 在加载swf动画之后在封装的里面报错了 , 用的官网的例子 [ 77%]

...t16 值。     */     __proto.getInt16=function(){         if (this._pos_+2 > this._length)throw "getInt16 error - Out of bounds";         var us=this._d_.getInt16(this._pos_,this._xd_);         this._pos_+=2;         return us;     } 只在那个 If  ...

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

318. 销毁有声音的spine动画,skeleton中的_onAniSoundStoped有时会报undefined错误 [ 77%]

...         _channel=this._soundChannelArr;             if (_channel.isStopped || force){                 !_channel.isStopped && _channel.stop();                 this._soundChannelArr.splice(i,1);                 len--;i--;  ...

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

319. 渲染队列排序问题,导致Alpha混合效果出错 [ 77%]

...i++){             var render=renders ;             if (camera._isLayerVisible(render._owner._layer)&& render._enable){                 Stat.frustumCulling++;                 if (!camera.useOcclusionCulling || render._needRender(boundFru...

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

320. 自定义shader-shader预编译 [ 77%]

...端移动设备输出的宏定义值需做判断移除高精度宏定义 if (Laya.WebGL.shaderHighPrecision) sc.precompileShaderWithShaderDefine(73,4,20); else sc.precompileShaderWithShaderDefine(73 - Laya.ShaderCompile3D.SHADERDEFINE_HIGHPRECISION,4,20);class ShaderPrecompile { constructor() { Laya...

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