大约有 113 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0047 秒)
...创建了一个平面。如图1所示。 ```typescript //平面 var plane:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createPlane(10, 10, 10, 10))) as MeshSprite3D; //新建材质 var planeMat:BlinnPhongMaterial = new BlinnPhongMaterial(); Texture2D.load("res/threeDimen/Physics/gras...
来源: Laya2.0_文档 发布时间: 20210714
meshsprite3d如何隐藏 没有visible属性 2018-01-17 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 qian 赞同来自: 可以修改材质的渲染模式跟反射率,示例代码如下: var material = meshS...
来源: Laya_社区 发布时间: 20180117
... 微信 zwjioro 赞同来自: 自己写了一个类,类里有个成员是MeshSprite3D,MeshSprite3D在constructor里初始化。现在想重复的new这个类,第一次可以正常创建对象,第二个new出来的对象的MeshSprite3D就成了undefined了。 不知道我说清楚了没~ ...
来源: Laya_社区 发布时间: 20180307
MeshSprite3D的宽高如何修改? var box = new Laya.MeshSprite3D(new Laya.BoxMesh(l, w, h)); 2018-03-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 2 个回复 Laya_Aaron 赞同来自: 这个一般都是做模型的时...
来源: Laya_社区 发布时间: 20180320
...sprite3D : Laya.Sprite3D): void{ if((sprite3D as Laya.MeshSprite3D) == null || !this.isUseOuline){ // console.log('spreite3D node meshSprite3D is null'); return; } var unlitMaterial = new La...
来源: Laya_社区 发布时间: 20210203
...nLight.direction = new Laya.Vector3(1, -1, -1); //平面 var plane: Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(new Laya.PlaneMesh(6, 6, 10, 10))) as Laya.MeshSprite3D; var planeMat: Laya.StandardMaterial = new Laya.StandardMaterial(); planeMat.diffuseTexture = Laya.Texture2D.load(".....
来源: Laya_社区 发布时间: 20180820
...面有个摄像机,和 Sprite3D ,而我按照你们的例子去获取MeshSprite3D 根本就没有 ! 1.如果可以贴 怎么实现,不行是不是我导出有问题 2.因为我这个是双面的 背面默认已经有了 ,怎么只贴一个面 (透明!) 我这个使用sprite3D...
来源: Laya_社区 发布时间: 20170907
...图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
...,我们可以通过它们来获取模型上的材质。 **Tips**:MeshSprite3D模型中为meshRenderer,SkinnedMeshSprite3D模型中为skinnedMeshRenderer。 ###### 这两个类多是一些继承自'父类'的共有的接口,可以查看'父类' **BaseRenderer** 的API([API地址](https:...
来源: Laya2.0_文档 发布时间: 20210715
...m.rotate(new Vector3(-30, 0, 0), true, false); //添加地板 var floor:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createPlane(10, 2000, 100, 100))) as MeshSprite3D; //给地板添加物理组件 var floorCollicar:PhysicsCollider = floor.addComponent(PhysicsCollider); // 添加c...
来源: Laya_社区 发布时间: 20190417