大约有 978 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
Laya_社区(516) Laya3.0_api(117) Laya2.0_文档(110) Laya2.0_api(94) laya_api(83) Laya_示例(40) Laya3.0_文档(18)
...'BoxMesh' does not exist on type 'typeof Laya' discard property,please use transform's property instead 播放音效时报错Failed to set the 'buffer' property on 'AudioBufferSourceNode'的问题 Cannot set property text of #<Button> which has only a getter 问题状态 最新活动: 2018-03-...
来源: Laya_社区 发布时间: 20180324
...ew Laya.MeshSprite3D(Laya.Mesh.load("man/hero-mon_1129.lm")); this.roleMan.transform.localScale = new Laya.Vector3(0.01,0.01,0.01); this.roleMan.transform.localPosition = new Laya.Vector3(0,-0.5,-3); this.scene.addChild(this.roleMan); //给男角色添加贴图动画 var manAni:Laya.SkinAnimations =...
来源: Laya_社区 发布时间: 20180725
...rite3D(Laya.PrimitiveMesh.createBox(1, 1, 1))) as Laya.MeshSprite3D; box_1.transform.translate(new Laya.Vector3(0, 5, 0)); var boxRigidBody_1 : Laya.Rigidbody3D = box_1.addComponent(Laya.Rigidbody3D); var boxShape_1 : Laya.BoxColliderShape = new Laya.BoxColliderShape(1, 1, 1); boxRigidBody_1.collide...
来源: Laya_社区 发布时间: 20190602
...urikenParticleRenderer _renderUpdate(context:RenderContext3D, transfrom:Transform3D):void[override] ShurikenParticleRenderer event(type:String, data:* = null):Boolean 派发事件。 EventDispatcher hasListener(type:String):Boolean 检查 EventDispatcher 对象是否为特定事件类型注册...
来源: Laya2.0_api 发布时间: 20190513
...cene()); var camera = scene.addChild(new Laya.Camera(0, 0.1, 100)); camera.transform.translate(new Laya.Vector3(0, 0.8, 1.0)); camera.transform.rotate(new Laya.Vector3(-30, 0, 0), true, false); camera.clearColor = null; camera.addComponent(CameraMoveScript); var map=Laya.Sprite3D.load("H5/Main.lh");...
来源: Laya_社区 发布时间: 20170515
...搜索,别说模糊查找。我都写明了都搜索不到) layaMonkey.transform.translate( new Laya.Vector3(100,500,100)); layaMonkey.transform.position = new Laya.Vector3(100,500,100); 2018-06-04 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内...
来源: Laya_社区 发布时间: 20180604
....stage.addChild(this.scene); this.scene.addChild(this.camera); this.camera.transform.translate(new Laya.Vector3(0, 3.5, 1)); this.camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); //3.清除照相机颜色 this.camera.clearColor = null; this.directionLight = new Laya.DirectionLight(...
来源: Laya_社区 发布时间: 20200903
...法。 unity中可以通过设置forward朝向来改变角度, laya中的transform中执行的所有旋转都是无效的? 2019-05-08 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 1 个回复 bpmf_d 赞同来自: 提供一...
来源: Laya_社区 发布时间: 20190508
...刚体不可以随意改变大小,同理,刚体是不可以用引擎的transform,scale rotation来控制的,如果想要控制 请将rigidbody的isKinematic设置为true,就可以用引擎的transform scale rotation来控制了 2020-07-13 1 0 分享 微博 QZONE 微信 少佳 赞同来...
来源: Laya_社区 发布时间: 20200713
...摄像机 var camera = new Laya.Camera(); scene.addChild(camera); camera.transform.localPosition = new Laya.Vector3(0,4,10); //载入并显示3D建筑 var map = Laya.Sprite3D.load("LayaScene_test/test.lh"); scene.addChild(map); //map.transform.localPosition = new Laya.Vector3(0,-4,-10); //控制摄...
来源: Laya_社区 发布时间: 20170524