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

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

51. rigidBody.applyForce 物体不会移动 [ 75%]

... Laya.Scene3D(); //将场景加到舞台上 this.scene = scene; Laya.stage.addChild(scene); //添加方向光 var directionlight: Laya.DirectionLight = scene.getChildByName( "Directional Light" ) as Laya.DirectionLight; this.directionlight = directionlight; //加入子層人物腳色到舞台 var li...

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

52. 请问怎么把多个模型合并在一个组里面 [ 75%]

请问怎么把多个模型合并在一个组里面 var box0= scene.addChild(new Laya.MeshSprite3D(new Laya.BoxMesh(1, 0.1, 1))); box0.transform.position=new Laya.Vector3(1,0,0); var box1= scene.addChild(new Laya.MeshSprite3D(new Laya.BoxMesh(1, 0.1, 1))); box1.transform.position=new Laya.Vector3(-...

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

53. Laya截图3D场景相关模型,导致模型透视! [ 75%]

...bin/res/modles/role_48_lurenyi/role_48_lurenyi.lh"; var scene = Laya.stage.addChild(new Laya.Scene()); var camera = scene.addChild(new Laya.Camera(0, 0.1, 100)); camera.transform.position = new Laya.Vector3(0, 0, 10); camera.transform.rotate(new Laya.Vector3(0, 180, 0), true, false); camera.orthogra...

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

54. 3D寻路 · LayaAir3.0文档 · LAYABOX [ 74%]

...nish(): void { //初始化3D场景 this.scene = (<Scene3D>Laya.stage.addChild(Loader.createNodes("res/threeDimen/scene/TerrainScene/XunLongShi.ls"))); //根据场景中方块生成路径点 this.initPath(this.scene); //获取可行走区域模型 var meshSprite3D: MeshSprite3D = (<MeshSprit...

来源: Laya3.0_文档 发布时间: 20230303

55. Sprite3D的克隆(JavaScript-3D基础(JS)-LayaAir3D之精灵) [ 74%]

...} //完成回调 onComplete() { //获取资源 var layaMonkey = this.scene.addChild(Laya.Loader.getRes("res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh")); //克隆sprite3d var layaMonkey_clone1 = Laya.Sprite3D.instantiate(layaMonkey, this.scene, false, new Laya.Vector3(0.6, 0, 0)); //克隆sprite...

来源: Laya2.0_文档 发布时间: 20210714

56. timer.loop帧率高于物理帧率移动父级导致子物体本地坐标异常 [ 74%]

...ME_SLOW;         Laya.Stat.show();         this.scene = Laya.stage.addChild(new Laya.Scene3D());                  Laya.timer.loop(1, this, this.loopfun);     }     loopfun(){         this.lastT = Date.now();         let dis = 1;         if(!this.cubeP){         ...

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

57. 评论功能没用的吗? [ 74%]

...eenMode = Laya.Stage.SCREEN_NONE; Laya.Stat.show(); var scene = Laya.stage.addChild(new Laya.Scene()); scene.shadingMode = Laya.BaseScene.VERTEX_SHADING; var camera = new Laya.Camera(0,0.1,100); scene.addChild(camera); camera.clearFlag = Laya.BaseCamera.CLEARFLAG_SKY; //可采用预加载资源方...

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

58. 动态阴影被切割了?为啥没有显示完成的阴影 [ 74%]

....Event.CLICK, this, mouseHandler); //添加3D场景 var scene = Laya.stage.addChild(new Laya.Scene()); function LayaAir3D() { //添加照相机 var camera = (scene.addChild(new Laya.Camera()));//0, 0.3, 100 camera.transform.translate(new Laya.Vector3(3, 4, 3)); camera.transform.rotate(new Laya.Vecto...

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

59. Sprite3D的克隆(TypeScript-3D基础(TS)-LayaAir3D之精灵) [ 74%]

...} //完成回调 onComplete() { //获取资源 var layaMonkey = this.scene.addChild(Laya.Loader.getRes("res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh")); //克隆sprite3d var layaMonkey_clone1 = Laya.Sprite3D.instantiate(layaMonkey, this.scene, false, new Laya.Vector3(0.6, 0, 0)); //克隆sprite...

来源: Laya2.0_文档 发布时间: 20210715

60. 材质的功能介绍(JavaScript-3D基础(JS)-LayaAir3D之Material材质) [ 74%]

...型上的材质 ```typescript //初始化3D场景 var scene = Laya.stage.addChild(Laya.Loader.getRes("res/threeDimen/scene/ChangeMaterialDemo/Conventional/scene.ls")); //从场景获取球型精灵 this.sphere = scene.getChildByName("Sphere"); //获取球型精灵自带的BlinnPhong材质 billinMate...

来源: Laya2.0_文档 发布时间: 20210715