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

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

61. Layabox drawlines 画线问题 [ 52%]

...会影响前面的画线 ,附件里面有出错的视频。 44CA5B502F2D6D475F75DFEAFBB971E9.zip 2020-10-09 0 0 分享 微博 QZONE 微信 Yangcy 赞同来自: demo   tsProjectXiangPiCa.zip 2020-10-09 0 0 分享 微博 QZONE 微信 kylin 赞同来自: 1) 你实现的方式并不合理,mousemove...

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

62. 新人请教一下载入U3D场景的问题,感谢 [ 52%]

...3.js:2143:4)   at new Main (file:///D:/works/laya/3dTest/bin/js/bundle.js:75:32)   at Object.2../GameConfig (file:///D:/works/laya/3dTest/bin/js/bundle.js:125:1)   at o (file:///D:/works/laya/3dTest/bin/js/bundle.js:11:265)   at r (file:///D:/works/laya/3dTest/bin/js/bundle.js:11:431)   at file...

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

63. 3D基础显示对象 · LayaAir3.0文档 · LAYABOX [ 51%]

...apsule(0.25, 1, 10, 20); //圆锥体 Laya.PrimitiveMesh.createCone(0.25, 0.75); //平面 Laya.PrimitiveMesh.createPlane(6, 6, 10, 1)); 创建好的对象是Mesh网格,如果想要创建出场景中能看到的Sprite3D对象,我们还需要为其添加组件。 3.1.2 MeshFilter & MeshRenderer...

来源: Laya3.0_文档 发布时间: 20241014

64. 关于LayaBox启动的问题。 [ 51%]

...Sender = 0} D/IC5 ( 4543): readEventLogs : User_activity-->1489977325537753559 :com.yunos.tv.homeshell D/IC5 ( 4543): readEventLogs : am_on_paused_called--> packnameString = 1489977325752612684 :com.yunos.tv.homeshell D/IC5 ( 4543): readEventLogs : am_on_resume_called--> packnameString = 14...

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

65. 通过PrimitiveMesh创建简单Mesh(JavaScript-3D基础(JS)-LayaAir3D之模型和网格) [ 51%]

...ite3D.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createCone(0.25, 0.75))); cone.transform.position = new Laya.Vector3(-2.0, 0.375, 0.6); //平面 var plane = sprite3D.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createPlane(6, 6, 10, 10))); ``` 效果如图1: ![](img/1.png)(图1)

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

66. 通过PrimitiveMesh创建简单Mesh(TypeScript-3D基础(TS)-LayaAir3D之模型和网格) [ 51%]

...ite3D.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createCone(0.25, 0.75))); cone.transform.position = new Laya.Vector3(-2.0, 0.375, 0.6); //平面 var plane = sprite3D.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createPlane(6, 6, 10, 10))); ``` 效果如图1: ![](img/1.png)(图1)

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

67. 场景环境反射(TypeScript-3D基础(TS)-LayaAir3D之场景渲染配置) [ 50%]

...aya.MeshSprite3D(mesh)); teapot.transform.position = new Laya.Vector3(0, 1.75, 2); teapot.transform.rotate(new Laya.Vector3(-90, 0, 0), false, false); })); //加载纹理 Laya.Texture2D.load("res/threeDimen/pbr/jinshu.jpg", Laya.Handler.create(null, function(tex) { //实例PBR材质 var pbrMat = new...

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

68. 场景环境反射(JavaScript-3D基础(JS)-LayaAir3D之场景渲染配置) [ 50%]

...aya.MeshSprite3D(mesh)); teapot.transform.position = new Laya.Vector3(0, 1.75, 2); teapot.transform.rotate(new Laya.Vector3(-90, 0, 0), false, false); })); //实例PBR材质 var pbrMat = new Laya.PBRStandardMaterial(); //开启该材质的反射 pbrMat.enableReflection = true; //设置材质的金...

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

69. laya.d3.component.volume.VolumeManager_API3.0 [ 50%]

...IVolumeManager.remove Defined in laya/d3/component/Volume/VolumeManager.ts:75 remove volume Parameters volume: Volume Returns void removeMotionObject removeMotionObject(renderObj: BaseRender): void Defined in laya/d3/component/Volume/VolumeManager.ts:93 Parameters renderObj: BaseRender Returns void ...

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

70. 通过PrimitiveMesh创建简单Mesh(ActionScript-3D基础(AS3)-LayaAir3D之模型和网格) [ 50%]

...te3D = sprite3D.addChild(new MeshSprite3D(PrimitiveMesh.createCone(0.25, 0.75))) as MeshSprite3D; cone.transform.position = new Vector3(-2.0, 0.375, 0.6); //平面 var plane:MeshSprite3D = sprite3D.addChild(new MeshSprite3D(PrimitiveMesh.createPlane(6, 6, 10, 10))) as MeshSprite3D; ``` 效果如图1...

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