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

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

371. laya3d导入模型动画,添加光照之后,模型全黑。 [ 68%]

...dChild(new DirectionLight()) as DirectionLight; directionLight.color = new Vector3(1, 1, 1); directionLight.direction = new Vector3(0, -1.0, -1.0); 如果还是达不到你想要的效果的话就尝试更改一下你的材质 材质与灯光的详细介绍连接 https://ldc.layabox.com/doc/?nav=zh-...

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

372. 用raycast选取实体,hitresult始终是false [ 68%]

... var point = new Laya.Vector2(); var ray: Laya.Ray = new Laya.Ray(new Laya.Vector3(2, 2, 2), new Laya.Vector3(3, 3, 3)); var outHitResult: Laya.HitResult = new Laya.HitResult(); point.x = Laya.MouseManager.instance.mouseX; point.y = Laya.MouseManager.instance.mouseY; console.log("rayPoint111 pointx:...

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

373. [Laya2.0beta3] 3d模型克隆后 都不显示了 [ 68%]

...e3d layaMonkey_clone1 = Sprite3D.instantiate(layaMonkey, scene, false, new Vector3(0.6, 0, 0)); //克隆sprite3d layaMonkey_clone2 = scene.addChild(Sprite3D.instantiate(layaMonkey, null, false, new Vector3( -0.6, 0, 0))) as Sprite3D; 上图两种 克隆方式 2018-10-18 1 2 分享 微博 QZONE 微...

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

374. mac下ide调试 [ 68%]

...还是ide自带的都会报这个错   代码里lay自带都库会报错 Vector3 is not a constructor   我用都laya as3  laya这边mac是不是根本就没测试过 各种问题 2018-08-25 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关...

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

375. viewportPointToRay会影响CameraMoveScript的逻辑? [ 68%]

...eScript失效,相机开始乱转,而且最奇怪的是,发现连Laya.Vector3.ZERO也不再是(0, 0, 0)了,每次MouseDown之后ZERO的值都会变,具体逻辑已在截图上标注,是我的打开方式不对吗?   请帮助看一下,感谢! 附件 : --> 2018-06-14 添加...

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

376. meshRender修改材质问题 [ 68%]

...se1.lh"); scene.addChild(warehouse1); warehouse1.transform.rotate(new Laya.Vector3(0, 90, 0), false, false); warehouse1.transform.translate(new Laya.Vector3(0,0,0),false); warehouseMeshSprite3D1= warehouse1.getChildAt(0).getChildByName("Mesh1"); var material = warehouseMeshSprite3D1.meshRender.mater...

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

377. laya.d3.core.particleshuriken.ShurikenParticleSystem_API3.0 [ 67%]

...式。 startRotationConstantMaxSeparate startRotationConstantMaxSeparate: Vector3 = null Defined in laya/d3/core/particleShuriKen/ShurikenParticleSystem.ts:282 最大开始三维旋转,1模式。 startRotationConstantMin startRotationConstantMin: number = 0 Defined in laya/d3/core/particleShuriKen...

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

378. 怎么让模型原地依照Y轴旋转到 我指定的角度? 角度 如何 转换成 Y轴旋转 的四元数? [ 67%]

...第二个问题绕开了。 var t:Transform3D; t.localRotationEuler = new Vector3(0, 45, 0); 不过在这里还是贴一下使用代码: var q:Quaternion = new Quaternion(); Quaternion.createFromYawPitchRoll(45,0,0,q);   2017-09-19 1 0 分享 微博 QZONE 微信 avpvsdoom 赞同来自: box.transfor...

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

379. [LayaAir 2.0]laya2.0 CharacterController move 运动不平滑,会抖动 [ 67%]

... new Laya.CapsuleColliderShape(0.5, 1); sphereShape.localOffset = new Laya.Vector3(0, 0.3, 0); this.characterController.colliderShape = sphereShape; this.characterController.gravity = new Laya.Vector3(0, -1, 0); this.characterController.restitution = 0; //弹力     在onUpdate 或者用timer驱...

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

380. 给模型动态添加脚本报错 [ 67%]

...              goldNode.transform.localPosition = new Laya.Vector3(this.startPos.x + (4.5 - Math.random() * 9), this.startPos.y, this.startPos.z + (2.5 - Math.random() * 5));                 console.log('----------------goldnode', goldNode);      ...

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