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

大约有 2,258 项符合查询结果, 库内数据总量为 31,580 项。 (搜索耗时: 0.0072 秒)

581. 关联shader的uniform(TypeScript-3D基础(TS)-LayaAir3D之Shader) [ 69%]

...varying vec2 v_Texcoord0; varying vec3 v_Normal; uniform sampler2D u_AlbedoTexture; void main() { vec4 albedoTextureColor = vec4(1.0); albedoTextureColor = texture2D(u_AlbedoTexture, v_Texcoord0); gl_FragColor=albedoTextureColor; } ``` ### 1.定义自定义属性 **Material** 是所有的材质的...

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

582. beta9渲染大bug!!!急急急!!!有demo和截图!!! [ 69%]

...中使用的材质为PBR材质,原因应该是由于机型不支持OES_texture_float(浮点纹理)或者OES_texture_float_linear(浮点纹理线性采样)扩展导致的,可以在出现问题的机型上控制台打印下Laya.LayaGL.renderEngine._supportCapatable._extensionMap这个里面的内...

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

583. layaair1.7.9 beta版,给图片加上颜色滤镜,效果有问题 [ 69%]

...,谢谢了var spr:laya.display.Sprite = new laya.display.Sprite(); spr.texture = tx; Laya.stage.addChild(spr); spr.x = 300; spr.y = 100; var color:Array = ; color.push( 0, 0, 0, 0, 255, 0, 0, 0, 0, 255, 0, 0, 0, 0, 255, 0, 0, 0, 1, 0); var filter:ColorFilter = new ColorFilter(color); spr.filters =...

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

584. 材质-BlinnPhong-高光贴图 [ 69%]

...nedMeshSprite3d.skinnedMeshRender.materials[i]; //高光贴图 mat.specularTexture = Laya.Texture2D.load(this.specularMapUrl[i]); } Laya.timer.frameLoop(1, this, function () { dude1.transform.rotate(this.rotation); dude2.transform.rotate(this.rotation); }); }class BlinnPhong_SpecularMap { private sc...

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

585. laya.ani.bone.Skeleton [ 69%]

...rite  templet : Templet[read-only] 得到动画模板的引用 Skeleton texture : Texture 设置一个Texture实例,并显示此图片(如果之前有其他绘制,则会被清除掉)。 等同于graphics.clear();graphics.drawImage(),但性能更高 还可以赋值一个图片地址,...

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

586. 3d导入粒子效果报错 [ 69%]

...anager:unknown file(res/partical1/Assets/IGSoft_Tools/FXMaker/ToolResource/Texture/MapGrid.psd) extension with: psd. at LoaderManager.__proto._create (file:///C:/Users/borui/Desktop/Cube3D/bin/libs/laya.core.js:13120:11) at LoaderManager.__proto.create (file:///C:/Users/borui/Desktop/Cube3D/bin/libs...

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

587. 通过canvas的缩放来实现清晰度是什么意思呢? [ 69%]

...tandardMaterial();                     material.diffuseTexture = Texture2D.load("res/test4.png");   sphere.meshRender.material = material;   test4.png是一张1024*512的图,我想提高贴图的清晰度 有人说可以通canvas缩放来实现 具体怎么做? 不用Textu...

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

588. laya2.0微信开发域无法显示 [ 69%]

...a2.0提供了WXOpenDataViewer来做开放域显示。 以前1.0的new Laya.Texture(sharedCanvas)的构建方式不行了,修改方案可以参考以下WXOpenDataViewer的Texture创建方案。 2018-12-24 0 0 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先...

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

589. laya.core.js报错:value._addReference is not a function [ 69%]

...ght (in promise) TypeError: value._addReference is not a function     at Texture.<anonymous> (laya.core.js:15911)     at Texture.__proto._onLoaded (laya.core.js:15752)     at EventHandler.__proto.runWith (laya.core.js:1410)     at ResInfo.__proto.event (laya.core.js:1166)     at Load...

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

590. 材质-BlinnPhong-法线贴图 [ 69%]

...material = meshSprite3D.meshRender.material; //法线贴图 material.normalTexture = Laya.Texture2D.load(this.normalMapUrl[i]); } Laya.timer.frameLoop(1, this, function () { monster1.transform.rotate(this.rotation); monster2.transform.rotate(this.rotation); }); }class BlinnPhong_NormalMap { private ...

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