大约有 1,449 项符合查询结果, 库内数据总量为 30,779 项。 (搜索耗时: 0.0053 秒)
...mage2D方法内的下列语句:texImage2D(_args) { var args = arguments; if (args.length == 6) { if (args[5]._nativeObj) { this.add_iiiiiii(FUNCTION_ID.TEXIMAGE2D, args[0], args[1], args[2], args[3], args[4], args[5]._nativeObj.conchImgId); } else { this.add_iiiiiiiii(FUNCTION_ID.TEXIMAGE2DCANVAS,...
来源: Laya_社区 发布时间: 20200720
...d, $responseType, $headers); private function onHrCompleteHandler():void { if(this.completeHandler) { this.completeHandler.runWith(this.hr.data); } } private function onHrErrorHandler($error:String):void { if(this.errorHandler) { this.errorHandler.runWith($error); } } 其中就是这个$error,在...
来源: Laya_社区 发布时间: 20180528
...number, fillColor: any, lineColor?: any, lineWidth?: number):void { if(this instanceof Laya.Graphics == false ){ return; } let sideMin:number = width<=height ? width : height; if(round<0){ round=0; }else if(round>sideMin/2){ round=sideMin/2; } this.drawPath(x, y,...
来源: Laya_社区 发布时间: 20210123
... function destroy(destroyChild:Boolean = true):void { if(effect3D != null){ effect3D.destroy(); effect3D = null; } super.destroy(true); Laya.loader.clearRes(thi...
来源: Laya_社区 发布时间: 20180517
... * i, 130 + 140 * j); card[index].on(Laya.Event.CLICK, this, function(e) { if (gameStatue == true) { if ((card_A == -1) && (card_B == -1)) { card_A = e.target.name; button[card_A].color = "red"; } else if ((card_A != -1) && (card_B == -1)) { card_B = e.target.name; if ((g_list_A.inde...
来源: Laya_社区 发布时间: 20160623
...换为百度坐标 private function convertToBaiduCoord(data:*):void { if (data.status == 0) { var position:* = data.points[0]; // 设置标注物位置 marker.setPosition(position); map.panTo(position); } } ``` 在转换完成后设置标注物的位置,并且把视角平移到以标...
来源: Laya2.0_文档 发布时间: 20210715
...public function set visible(value:Boolean):void { super.visible = value; if (value) _mcAni.removeFromParent(); } 1.7之后的转换 __getset(0,__proto,'visible',function(){ return Laya.superGet(SwatAniUI,this,'visible'); },function(value){ Laya.superSet(SwatAniUI,this,'visible',value); if (valu...
来源: Laya_社区 发布时间: 20180227
...tpixels 得到有效数据。__proto.getPixels=function(x,y,width,height){ if (Render.isWebGL){ return RunDriver.getTexturePixels(this,x,y,width,height); }else { Browser.canvas.size(width,height); Browser.canvas.clear(); Browser.context.drawTexture(this,-x,-y,this.width,this.height,0,0); var info=Br...
来源: Laya_社区 发布时间: 20171201
...: HTMLCanvas, x: number, y: number, width: number, height: number): void { if (!canvas) return; var src: Context = canvas.context as Context; var submit: ISubmit; if (src._targets) { //生成渲染结果到src._targets上 /* this._submits[this._submits._length++] = SubmitCanvas.create(src, 0, null);...
来源: Laya_社区 发布时间: 20210527
...tPixel(_tex); /************调用该方法导致内存泄漏*************/ if(pixelCount / _initPixelCount < 0.3) { trace("remove"); _htmlCanvas.clear(); _htmlCanvas.destroy(); _tex.destroy(); _colorSpr.off(Event.MOUSE_MOVE, this, __moveHandler); } } private function getPixel(tex:Texture):int { v...
来源: Laya_社区 发布时间: 20180302