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

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

481. 1.7.13版本以上的的截屏功能有问题 请测试下 [ 80%]

...从1.7.13之后 截屏功能就跪了  this.road.drawToCanvas(this.road.width,this.road.picHeight,0,0); 要改成 this.road.drawToCanvas(this.road.width,this.road.picHeight);或者 this.road.drawToCanvas(this.road.width,this.road.picHeight,this.road.x,this.road.y);这样才能在1.7.13以上的...

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

482. 寻路系统(ActionScript-3D基础(AS3)-LayaAir3D之高级应用) [ 80%]

...rivate function createGridFromAStarMap(texture:Texture):Array { var textureWidth:int = texture.width; var textureHeight:int = texture.height; //读取图片像素 var pixelsInfo:Uint8Array = texture.getPixels(); var aStarArr:Array = new Array(); var index:int = 0; //像素值为黑色不可通行,...

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

483. laya.resource.NativeRenderTexture2D_API3.0 [ 79%]

...apCount obsolute offsetX offsetY referenceCount samples sourceHeight sourceWidth width wrapModeU wrapModeV wrapModeW cpuMemory currentActive gpuMemory Methods _addReference _clearReference _create _end _removeReference _setCPUMemory _setCreateURL _setGPUMemory _start clear destroy end event getData ...

来源: Laya3.0_api 发布时间: 20231115

484. laya.resource.Texture2D [ 79%]

...ublic Methods Show Inherited Public Methods MethodDefined By  Texture2D(width:int = 0, height:int = 0, format:int, mipmap:Boolean = true, canRead:Boolean = false) 创建一个 Texture2D 实例。 Texture2D _getSource():*[override] 获取纹理资源。 BaseTexture  _parse(data:*, propertyParam...

来源: Laya2.0_api 发布时间: 20190513

485. Sprite-新手引导 [ 79%]

...prite(); maskArea.alpha = 0.5; maskArea.graphics.drawRect(0, 0, Laya.stage.width, Laya.stage.height, "#000000"); guideContainer.addChild(maskArea); //绘制一个圆形区域,利用叠加模式,从遮罩区域抠出可交互区 interactionArea = new Sprite(); //设置叠加模式 interactionArea...

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

486. TiledMap.moveViewPort(x,y) 为嘛要传入负数 [ 79%]

... tmapsp.zOrder=1;         this.tMap.changeViewPort(-((Laya.stage.width-this.tMap.width)/2),-((Laya.stage.height-this.tMap.height)/2),this.tMap.width,this.tMap.height);         this.addChild(this.tMap.mapSprite()); 请问这是什么意思啊 2020-04-20 添加评论 免费帖 --> 分...

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

487. 无限循环滚动列表 [ 79%]

... middle         var midX = this._list.scrollPane.posX + this._list.viewWidth / 2;         var cnt = this._list.numChildren;         for (var i = 0; i < cnt; i++) {             var obj = this._list.getChildAt(i);             var dist = Math.abs(midX - obj.x - obj.width / 2)...

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

488. sprite加载图片,如果设置其高固定,宽等比? [ 79%]

...   $pic.height = 246;     $pic.scaleX = $pic.scaleY;     trace("$pic.width:" + $pic.width); })); 这样处理后,图片高度还是100%,并不是246啊 2017-05-03 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个...

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

489. laya.resource.TextureCube_API3.0 [ 79%]

...Memory height id maxMipmapLevel mipmap mipmapCount obsolute referenceCount width wrapModeU wrapModeV wrapModeW blackTexture cpuMemory errorTexture gpuMemory grayTexture whiteTexture Methods _addReference _clearReference _removeReference _setCPUMemory _setCreateURL _setGPUMemory destroy event gpuComp...

来源: Laya3.0_api 发布时间: 20231115

490. hitArea用法问题 [ 79%]

...Graphics(); g.drawRect(this.closeBtn.x-10,this.closeBtn.y-10,this.closeBtn.width+20,this.closeBtn.height+20,"#FF0000"); let hitA:Laya.HitArea = new Laya.HitArea(); hitA.hit = g; this.closeBtn.hitArea = hitA; // 写法二 this.closeBtn.graphics.drawRect(this.closeBtn.x-10,this.closeBtn.y-10,this.clos...

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