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

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

421. 滤镜-模糊滤镜 [ 79%]

...= Laya.Sprite; this.ape = new Sprite(); Laya.stage.addChild(this.ape); let texture = Laya.loader.getRes(apePath); this.ape.graphics.drawTexture(texture); this.ape.x = (Laya.stage.width - texture.width) / 2; this.ape.y = (Laya.stage.height - texture.height) / 2; } applayFilter() { // 创建一个模...

来源: Laya2.0_示例 发布时间: 20241119

422. 最新版本 1.7.5 beta fontClip [ 79%]

...; i < splitArr.length; i++) {                     var te:Texture = _sources[splitArr[i]] as Texture;                     if (_align != "right") {                         this.graphics.drawTexture(te, i * te.width, 0, te.width, te.height);      ...

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

423. 设置内存上限后,时不时会闪屏的问题 [ 79%]

...合集中的话可以在资源预加载后添加以下两行代码: var texture:Texture = Laya.loader.getRes(e.url); texture.bitmap.enableMerageInAtlas = false;   2017-10-31 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 FearWood 相...

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

424. 在创建了 Textture2D如何对其进行宽高赋值 [ 79%]

...创建了 Textture2D如何对其进行宽高赋值 你好,我在创建了Texture2D后 ,我想对其进行宽高赋值,我发现没有相关的方法,而width和hight都是只读的。求解答。 另外我想设置像素,我看到可以getPixels ,但没有setPixels也同样求解。 我...

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

425. laya的drawToTexture太坑 [ 79%]

laya的drawToTexture太坑 我之前做flash as3的,默认认为drawToTexture是要画目标sprite里面的0,0点。 结果怎么画都没有东西显示,看了下源码发现,里面把它自己(该sprite)的x, y给减掉了, 所以我只能每次在drawToTexture的两个offset参数里...

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

426. 想用camera做一个类似照相机的功能 [ 79%]

...           this.renderTargetCamera.renderTarget = new RenderTexture(Laya.stage.width, Laya.stage.height);             //渲染顺序             this.renderTargetCamera.renderingOrder = -1;             //清除标记             this.r...

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

427. 请问这个WebGL警告是怎么回事? [ 78%]

...mplete index.html:1 [.Offscreen-For-WebGL-00000000098F0810]RENDER WARNING: texture bound to texture unit 0 is not renderable. It maybe non-power-of-2 and have incompatible texture filtering.   附件 : --> 2017-05-12 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...

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

428. 寻路系统(JavaScript-3D基础(JS)-LayaAir3D之高级应用) [ 78%]

... /** * 通过图片数据计算得到AStar网格 */ createGridFromAStarMap(texture) { var textureWidth = texture.width; var textureHeight = texture.height; //读取图片像素 var pixelsInfo = texture.getPixels(); var aStarArr = []; var index = 0; //像素值为黑色不可通行,白色部分可...

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

429. LAYA自带VIDEO在安卓X5中报离屏渲染的错,但是在PC端没有问题 [ 78%]

...渲染的错,但是在PC端没有问题 在device.js中WebGLContext.bindTexture方法报的texture bound to texture unit 0 is not renderable. It maybe non-power-of-2 and have incompatible texture filtering 2019-11-01 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 ...

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

430. layabox中纹理的颜色采样问题,用原生combobox也有这个问题 [ 78%]

...复 专注前端三十年 赞同来自: 无雨之地 解决方法,设置Texture2D的filterMode (texture.bitmap as Laya.Texture2D).filterMode = Laya.BaseTexture.FILTERMODE_POINT; 那么问题来了,如何设置所有的默认是这个值呢 2020-12-10 1 0 分享 微博 QZONE 微信 专注前...

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