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

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

1181. 火狐浏览器上webgl异常 [ 51%]

...0297%20%3E%20eval:4:30925 Error: WebGL: texSubImage2D: This operation requires zeroing texture data. This is slow. 如题 这可能是什么引起的? 2017-11-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 wu...

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

1182. 图片居中的问题 [ 51%]

...NE 微信 shaouXie 赞同来自: var bg = new Laya.Sprite(); bg.loadImage("res/bg-480x720.jpg"); Laya.stage.on(Laya.Event.RESIZE,this,onResize);   function onResize() {     var scale,scaleX,scaleY;     scaleX = Browser.clientWidth/480;     scaleY = Browser.clientHeight/720;     scale = scal...

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

1183. Dialog.show 的 showEffect参数在微信真机上的问题 [ 51%]

...在微信小游戏上显示一个Dialog 代码如下: Laya.loader.load(["res/atlas/comp.atlas"], Laya.Handler.create(this, function(){ console.log("load atals ok"); var dlg1:ui.TestDlgUI = new ui.TestDlgUI(); Laya.stage.addChild(dlg1); dlg1.show(); }));在微信小游戏的模拟器上是正常的...

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

1184. Sprite graphics的显示比例问题 [ 51%]

....addChild(character); return character; } characterA = createCharacter("../res/timg-1.png");上面这段代码不设定sprite的比例时,显示正常;但如果设置比例 character.scale(0.5, 0.5); 显示不正确,详见下面截图 IDE版本 1.7.9Bate   附件 : --> 2017-08-28 添加评...

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

1185. 物理碰撞器(TypeScript-3D基础(TS)-LayaAir3D之物理系统) [ 51%]

...a.BlinnPhongMaterial = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/threeDimen/Physics/grass.png", Laya.Handler.create(this, function(tex:Laya.Texture2D) { planeMat.albedoTexture = tex; })); //设置纹理平铺和偏移 planeMat.tilingOffset = new Laya.Vector4(10, 10, 0, 0); //设置材...

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

1186. 物理碰撞器(ActionScript-3D基础(AS3)-LayaAir3D之物理系统) [ 51%]

...ar planeMat:BlinnPhongMaterial = new BlinnPhongMaterial(); Texture2D.load("res/threeDimen/Physics/grass.png", Handler.create(null, function(tex:Texture2D):void { planeMat.albedoTexture = tex; })); //设置纹理平铺和偏移 planeMat.tilingOffset = new Vector4(10, 10, 0, 0); //设置材质 plane.m...

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

1187. 关联shader的uniform(JavaScript-3D基础(JS)-LayaAir3D之shader) [ 51%]

...。 > 使用自定义材质 ```typescript //加载网格 Laya.Mesh.load("res/threeDimen/skinModel/LayaMonkey/Assets/LayaMonkey/LayaMonkey-LayaMonkey.lm", Laya.Handler.create(this, function(mesh) { //设置猴子 var layaMonkey = scene.addChild(new Laya.MeshSprite3D(mesh)); layaMonkey.transform.local...

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

1188. Laya.Pool缓存池问题 [ 51%]

...其实数组里的key就是获取时的标识符,是一样的。。var res = Laya.Pool.getItemByClass(str, Laya.Image);获取,Laya.Pool.recover(key, element);加入缓存池。。(这里key就是获取里的str,element就是数组里的对象) 15818760256 • 2018-04-17 16:44 因为我获...

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

1189. 粒子特效,播放与克隆有bug [ 51%]

... QZONE 微信 子艮 赞同来自: let sp3d = lf.addChild(Laya.loader.getRes("res/zhadan/1/LayaScene_zhadan/Conventional/zhadan.ls")) as Scene3D; let spCore = sp3d.getChildByName("Canvas") as Sprite3D; spCore.transform.localPosition = new Vector3(0, 0.7, 90); let tp3d = Sprite3D.instantiate(spCore, ...

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

1190. Laya.BlinnPhongMaterial.RENDERMODE_TRANSPARENT设置透明度不行了? [ 51%]

...Material = new Laya.BlinnPhongMaterial();         Laya.Texture2D.load("res/layabox.png", Laya.Handler.create(null, function (tex: Laya.Texture2D) {             material.albedoTexture = tex;         }));         material.albedoColor = new Laya.Vector4(1.0, 1.0, 1.0, 0.5);       ...

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