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

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

31. 3D两个平面拼接的贴图直接会有明显的接缝 [ 80%]

...理怎么关闭,下面是单个平面的创建代码   var plane: Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(1 , 1, 1, 1))) as Laya.MeshSprite3D; plane.transform.position = new Laya.Vector3(0,0,0); var material: Laya.StandardMaterial = new Laya.StandardMaterial(); material.diffuseTe...

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

32. timer无法执行 [ 79%]

...中降落的球 //var random: number = Math.random()*24-7; let ball: Laya.MeshSprite3D = new Laya.MeshSprite3D(Laya.PrimitiveMesh.createSphere(1)); this.scene1.addChild(ball);   ball.transform.position = new Laya.Vector3((Math.random() - 0.5) * 2, 10, 17); //添加刚体   ball.addComponent(Laya.P...

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

33. 有些模型load之后,MeshSprite3D 的共享材质个数为0,无法对材质进行操作 [ 79%]

有些模型load之后,MeshSprite3D 的共享材质个数为0,无法对材质进行操作 _disObj3d = Sprite3D.load("../../res/models/cike.lh"); _scene3d.addChild(_disObj3d); _disObj3d.once(Event.HIERARCHY_LOADED, null, function(sender:Sprite3D):void {       var ms:MeshSprite3D = _disObj3d...

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

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

...图1所示。 ```typescript //平面 var plane = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createPlane(10, 10, 10, 10))) as Laya.MeshSprite3D; //新建材质 var planeMat:Laya.BlinnPhongMaterial = new Laya.BlinnPhongMaterial(); Laya.Texture2D.load("res/threeDimen/Physics/grass.png", La...

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

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

...ngMaterial.RENDERMODE_TRANSPARENT设置透明度不行了? var box: Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1, 1, 1))) as Laya.MeshSprite3D;         box.transform.rotate(new Laya.Vector3(0, 45, 0), false, false);         var material: Laya.Blin...

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

36. 材质的功能介绍(TypeScript-3D基础(TS)-LayaAir3D之Material材质) [ 78%]

...,我们可以通过它们来获取模型上的材质。 ​ **Tips**:MeshSprite3D模型中为meshRenderer,SkinnedMeshSprite3D模型中为skinnedMeshRenderer。 ###### 这两个类多是一些继承自'父类'的共有的接口,可以查看'父类' **BaseRenderer** 的API([API地址](https:...

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

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

...ainSprite3D terrainSprite = MeshTerrainSprite3D.createFromMeshAndHeightMap(meshSprite3D.meshFilter.sharedMesh as Mesh, heightMap, 6.574996471405029, 10.000000953674316); //更新terrainSprite世界矩阵(为可行走区域世界矩阵) terrainSprite.transform.worldMatrix = meshSprite3D.transform.wor...

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

38. MeshSprite3D如何用缓动变化 透明度alpha值? [ 78%]

MeshSprite3D如何用缓动变化 透明度alpha值? 2018-03-27 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 AILHC 赞同来自: 可以的,可以去修改材质球,参考我的缓动扩展 github: https...

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

39. texture2D的setPixel纹理rgba数据之后会随着窗口的缩放,渐变成黑色 [ 77%]

...)) as Laya.Sprite3D; //正方体 var box = this.sprite3D.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createPlane())) as Laya.MeshSprite3D; this.box = box; box.transform.position = new Laya.Vector3(0.0, 0.0, 0); box.transform.rotate(new Laya.Vector3(90, 0, 0), false, false); Laya.loader.load(th...

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

40. IDE创建3D示例项目(ActionScript-3D基础(AS3)-快速开始一个LayaAir3D项目) [ 77%]

...dMatrix.setForward(new Vector3(1, -1, 0)); //添加自定义模型 var box:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createBox(1, 1, 1))) as MeshSprite3D; box.transform.rotate(new Vector3(0, 45, 0), false, false); var material:BlinnPhongMaterial = new BlinnPhongMaterial(); Texture...

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