大约有 1,449 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0053 秒)
...方法为/** *获取对象的宽 */ __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
...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
...译为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
...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
...原始坐标转换为百度坐标 function convertToBaiduCoord(data) { if (data.status == 0) { var position = data.points[0]; // 设置标注物位置 marker.setPosition(position); map.panTo(position); } } ``` 在转换完成后设置标注物的位置,并且把视角平移到以标...
来源: Laya2.0_文档 发布时间: 20210715
...//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
...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
... _channel=this._soundChannelArr; if (_channel.isStopped || force){ !_channel.isStopped && _channel.stop(); this._soundChannelArr.splice(i,1); len--;i--; ...
来源: Laya_社区 发布时间: 20190827
...i++){ var render=renders ; if (camera._isLayerVisible(render._owner._layer)&& render._enable){ Stat.frustumCulling++; if (!camera.useOcclusionCulling || render._needRender(boundFru...
来源: Laya_社区 发布时间: 20190711
...端移动设备输出的宏定义值需做判断移除高精度宏定义 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