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

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

101. 官方LayaAir之灯光一节示例背景在微信里表现不一致 [ 76%]

...Child(camera); //移动摄像机位置 camera.transform.translate(new Laya.Vector3(0, 4, 8)); //旋转摄像机角度 camera.transform.rotate(new Laya.Vector3( -30, 0, 0), true, false); //创建方向光 var light:Laya.DirectionLight = scene.addChild(new Laya.DirectionLight()) as Laya.DirectionLight...

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

102. 物理碰撞脚本和触发器脚本(JavaScript-3D基础(JS)-LayaAir3D之物理系统) [ 76%]

...ter(other) { this.owner.meshRenderer.sharedMaterial.albedoColor = new Laya.Vector4(0.0, 1.0, 0.0, 1.0); } /** * 当其他碰撞器进入绑定物体碰撞器后逐帧触发(子弹在物品内时) * 注:如相对移动速度过快,可能直接越过 */ onTriggerStay(other) {} /** * 当其他...

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

103. 3d场景下面有张2d的图片,当鼠标焦点不在该网页时,2d图片为啥会闪动 [ 76%]

...cene.addChild(camera);             camera.transform.translate(new Vector3(0, 0.25, 0.6));             camera.transform.rotate(new Vector3(-30,0,0),true,false);             var map:Sprite3D = Sprite3D.load("3d/zhuoZi/ZhuoZi.lh");             map.transform.localScal...

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

104. 3D模式下使用Tween使模型移动如何写法 [ 76%]

...h.meshRender.material = fishmaterial; fish.transform.localScale = new Laya.Vector3(0.001,0.001,0.001); fish.transform.localPosition = new Laya.Vector3(0,1,0); fish.transform.rotate(new Laya.Vector3(0,-Math.PI/2,0)); //移动鱼 Laya.Tween.to(fish,{x:-1},3000,Laya.Ease.linearIn,null) 这个Laya.Tween...

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

105. 关于转换2D屏幕坐标系统到3D正交投影下的坐标系统 [ 76%]

...nt = new Point(posX, posY); this.bottomScene.localToGlobal(pos2d); var pos:Vector3 = new Vector3(pos2d.x, pos2d.y, 0); var _translate:Vector3 = new Vector3(0, 0, 0); camera.convertScreenCoordToOrthographicCoord(pos, _translate); 2018-03-19 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...

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

106. 加载.lh文件 运行后黑屏 无法显示 [ 76%]

...ate scene:Laya.Scene3D;     private text:Laya.Text;     private _upVector3:Laya.Vector3 = new Laya.Vector3(0, 1, 0);     constructor() {         this._upVector3 = new Laya.Vector3(0, 1, 0);         Laya3D.init(0, 0); Laya.stage.scaleMode = Laya.Stage.SCALE_FULL; Laya.stag...

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

107. PointLight介绍(JavaScript-3D基础(JS)-LayaAir3D之灯光) [ 75%]

...ya.PointLight()); //设置点光源颜色 this.pointLight.color = new Laya.Vector3(1.0, 0.5, 0.0); //设置点光源位置 this.pointLight.transform.position = new Laya.Vector3(0.4, 0.4, 0.0); //设置点光源的范围 this.pointLight.range = 3.0; ``` **range** 为设置点光源的范围,相当...

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

108. u3d 插件导出 简单场景,用最新引擎无法加载成功 [ 75%]

...amera(); 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); //控制摄像机 camera.addComponent(CameraM...

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

109. 关于射线碰撞的问题,对于射线的罗辑方式不太了解,懂得进来帮忙看一下!~~~~~~~~~~ [ 75%]

...低起伏而改变,分享一下 //创建一条射线 ray2 = new Ray(new Vector3(0,0,0),new Vector3(0,-10,0)); //创建碰撞信息 rayCastHit2 =new RaycastHit();   //针循环 public function _update():void {     //刷新人物位置,_position是缓动函数实时更新的坐标     roleMo...

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

110. Effect材质详解(JavaScript-3D基础(JS)-模型材质详解) [ 75%]

...种材质常用特效制作。 #### 主要属性与方法 > 属性 `color:Vector4` 颜色。 `renderMode:int` [write-only] 设置渲染模式。 `texture:BaseTexture` 贴图。 `tilingOffset:Vector4` 纹理平铺和偏移。 #### 创建和使用Effect材质 下面代码来自官方示例([demo地址...

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