大约有 361 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0047 秒)
... 微信 zwjioro 赞同来自: 自己写了一个类,类里有个成员是MeshSprite3D,MeshSprite3D在constructor里初始化。现在想重复的new这个类,第一次可以正常创建对象,第二个new出来的对象的MeshSprite3D就成了undefined了。 不知道我说清楚了没~ ...
来源: Laya_社区 发布时间: 20180307
...1 浏览: 1516 关注: 2 人 吴杨俊文 • 2018-07-13 09:22 官方的是meshsprite3D诶 Laya_Aaron • 2018-07-13 10:29 @吴杨俊文:就是加载meshsprite3d里 吴杨俊文 • 2018-07-13 10:37 但如果我用的是.lh文件,也就是只能sprite3D,那该怎么添加嘞 Laya_Aaron • 2018-...
来源: Laya_社区 发布时间: 20180712
...(null, function(tex) { //使用纹理 var earth1 = scene.addChild(new Laya.MeshSprite3D(PrimitiveMesh.createSphere(5, 32, 32))); earth1.transform.translate(new Laya.Vector3(10, 20, -8)); var earthMat = new Laya.BlinnPhongMaterial(); earthMat.albedoTexture = tex; earthMat.albedoIntensity = 1; earth1....
来源: Laya2.0_文档 发布时间: 20210715
...me=EffectMaterialDemo)): ```typescript var earth = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createSphere())) as Laya.MeshSprite3D; earth.transform.position = new Laya.Vector3(0, 0, 0); //创建EffectMaterial材质 var material = new Laya.EffectMaterial(); //加载地球贴图 Laya.Tex...
来源: Laya2.0_文档 发布时间: 20210714
...aya.SpotLight = new Laya.SpotLight(); let cube_: Laya.MeshSprite3D = new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1, 1, 1)); let cube_2 = cube_.clone() as Laya.MeshSprite3D; scene_.addChild(cube_2); cube_2.transform...
来源: Laya_社区 发布时间: 20200506
...个组件不建议用, 用ainimator 更好, 如果用的话要加在MeshSprite3D 上。 不能直接加在Sprite3D 上。 2018-07-03 0 0 分享 微博 QZONE 微信 186*****530 赞同来自: 卧槽太牛逼了,官方教程和第三方以及引擎实例在旧版动画那边都用这个SkinAnim...
来源: Laya_社区 发布时间: 20180703
...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
...Protected All Inherited Externals Only exported Menu Globals "laya/d3/core/MeshSprite3D" MeshSprite3D Class MeshSprite3D MeshSprite3D 类用于创建网格。 Hierarchy RenderableSprite3D MeshSprite3D Index Constructors constructor Properties _extra _scene _url name tag LIGHTMAP LIGHTMAPSCALEOFFSET ...
来源: Laya3.0_api 发布时间: 20231115
...ic onTriggerEnter(other:Laya.PhysicsComponent):void { ((this.owner as Laya.MeshSprite3D).meshRenderer.sharedMaterial as BlinnPhongMaterial).albedoColor = new Laya.Vector4(0.0, 1.0, 0.0, 1.0); } /** * 当其他碰撞器进入绑定物体碰撞器后逐帧触发(子弹在物品内时) * 注:如...
来源: Laya2.0_文档 发布时间: 20210715
...dingBox 2017-08-11 2 1 分享 微博 QZONE 微信 McGee 赞同来自: Laya.MeshSprite3D.prototype.meshRenderer,bounds 2019-07-08 0 1 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 sfsmmc 相关问题 请问有没有方法能够获取“鼠...
来源: Laya_社区 发布时间: 20170811