大约有 189 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)
... //添加自定义模型 var box = scene.addChild(new Laya.MeshSprite3D(new Laya.BoxMesh(2, 2, 2))); box.transform.rotate(new Laya.Vector3(0, 45, 0), false, false); var material = new Laya.StandardMaterial(); material.diffuseTexture = Laya.Texture2D...
来源: Laya_社区 发布时间: 20180427
....animation.SkinAnimations; import laya.d3.core.Camera; import laya.d3.core.MeshSprite3D; import laya.d3.core.material.StandardMaterial; import laya.d3.core.scene.Scene; import laya.d3.math.Vector3; import laya.d3.math.Vector4; import laya.d3.resource.RenderTexture; import laya.d3.resource.models.Mes...
来源: Laya_社区 发布时间: 20170209
... = new Vector3(0, -1.0, -1.0); directionLight.shadow = true; var QiPanMesh:MeshSprite3D = new MeshSprite3D(Mesh.load("qipan/qipan-qipan.lm"), "qipan"); QiPanMesh.transform.position = new Vector3(0, 0, -1); QiPanMesh.transform.rotation = new Quaternion(-1, 0, 0, 1); QiPanMesh.layer = Layer.getLayerBy...
来源: Laya_社区 发布时间: 20170617
...t laya.d3.core.BaseCamera; import laya.d3.core.Camera; import laya.d3.core.MeshSprite3D; import laya.d3.core.light.DirectionLight; import laya.d3.core.material.StandardMaterial; import laya.d3.core.scene.Scene; import laya.d3.math.RandX; import laya.d3.math.Vector3; import laya.d3.resource.Texture2D...
来源: Laya_社区 发布时间: 20170331
BoxCollider跟随MeshSprite3D变化大小,疑似BUG 如果吧MeshSprite3D的scale设置为0的话,BoxCollider的scale也会变成0,但是再把MeshSprite3D的scale调整回来的时候,BoxCollider却回不来了。 这算bug吗? 2018-12-05 添加评论 免费帖 --> 分享 微博 QZONE ...
来源: Laya_社区 发布时间: 20181205
...容相关的链接 提交 4 个回复 Monica - 知识达人 赞同来自: meshSprite3D.meshRender.boundingBox,可以获取模型的包围盒 2017-11-17 0 0 分享 微博 QZONE 微信 yinglei999 赞同来自: 可能我没有太说清楚 使用 meshSprite3D.meshRender.boundingBox 不论是获取 m...
来源: Laya_社区 发布时间: 20171117
... 微信 zwjioro 赞同来自: 自己写了一个类,类里有个成员是MeshSprite3D,MeshSprite3D在constructor里初始化。现在想重复的new这个类,第一次可以正常创建对象,第二个new出来的对象的MeshSprite3D就成了undefined了。 不知道我说清楚了没~ ...
来源: Laya_社区 发布时间: 20180307
... ```typescript //新建一个球体模型并添加到舞台上 var sphere:MeshSprite3D = scene.addChild(new MeshSprite3D(PrimitiveMesh.createSphere(1))) as MeshSprite3D; //新建一个球形的碰撞盒 var sphereShape:SphereColliderShape = new SphereColliderShape(1); //给球添加刚体 var sphere...
来源: Laya2.0_文档 发布时间: 20210714
...不过高度很小,可看成一个平面 var plane = scene.addChild(new MeshSprite3D(new BoxMesh(4,4,0.001))) as MeshSprite3D; var material = new StandardMaterial(); material.albedo = new Vector4(1.3, 1.3, 1.3, 1); material.diffuseTexture = Texture2D.load("res/bg.png"); plane.meshRender.material =...
来源: Laya_社区 发布时间: 20170314
...会相互影响 _shou是一个网格模型; ///自己的手 var myClone:MeshSprite3D = _shou.clone(); var myAmn:SkinAnimations = myClone.addComponent(SkinAnimations) as SkinAnimations; myAmn.templet = AnimationTemplet.load( "3d/shou/newShou.l...
来源: Laya_社区 发布时间: 20170317