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

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

191. 高级应用-Laya3D与网页混合 [ 69%]

... camera.transform.translate(new Laya.Vector3(0, 0.5, 1)); camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); //3.清除照相机颜色 camera.clearColor = null; var directionLight = scene.addChild(new Laya.DirectionLight()); directionLight.direction = new Laya.Vector3(0, -0.8, -1); d...

来源: Laya_示例 发布时间: 20241117

192. Unity导出插件导出的模型中Transform值有误 [ 69%]

...插件. 首先导入我上传的这个fbx,可以看到XCD_zhazhiji节点的rotationEuler是-90,0,0 导出成ls以后,通过打印节点:let colliderItem = this._rootNode.getChildByName("XCD_zhazhiji") as Laya.Sprite3D; console.log(colliderItem.transform.localRotationEuler);得出结果: 附上导出...

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

193. 请教一个3维旋转的问题 [ 69%]

...法用下面的写法,如果需要绕本地旋转应该怎么写 而且rotate函数只是描述增量,目标态应该怎么定义 可以看到local和world坐标系不重合时,两个值依然保持一致   附件 : --> 2020-06-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...

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

194. 加载不了模型 [ 69%]

...ansform.translate(new Laya.Vector3(0, 5, 5));         camera.transform.rotate(new Laya.Vector3(-30, 0, 0), true, false);         camera.clearColor = Laya.Vector3(255,255,0.1);         camera.addComponent(CameraMoveScript);         //添加方向光         var directionLight = sc...

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

195. IDE创建3D示例项目(ActionScript-3D基础(AS3)-快速开始一个LayaAir3D项目) [ 69%]

...Camera; camera.transform.translate(new Vector3(0, 3, 3)); camera.transform.rotate(new Vector3(-30, 0, 0), true, false); //添加方向光 var directionLight:DirectionLight = scene.addChild(new DirectionLight()) as DirectionLight; directionLight.color = new Vector3(0.6, 0.6, 0.6); directionLight.tran...

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

196. 2D性能优化 · LayaAir3.0文档 · LAYABOX [ 69%]

...,对它设置任何改变外观的属性都将导致图形重绘: var rotation=0, scale=1, position=0; private function setRotation(value):void { this.rotation=value; update(); } private function setScale(value):void { this.scale = value; update(); } private function setPosition(value):void { th...

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

197. 3D旋转如何做tween缓动?目前尝试了localRotationEuler,rotationEuler。 [ 68%]

3D旋转如何做tween缓动?目前尝试了localRotationEuler,rotationEuler。 3D旋转如何做tween缓动?目前尝试了localRotationEuler,rotationEuler。 1.rotationEuler只有set方法,没有get方法,没办法做缓动。 2.localRotationEuler有get和set方法,但是有万向...

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

198. 3D加载不了 [ 68%]

...ansform.translate(new Laya.Vector3(0, 5, 5));         camera.transform.rotate(new Laya.Vector3(-30, 0, 0), true, false);         camera.clearColor = Laya.Vector3(255,255,0.1);         camera.addComponent(CameraMoveScript);         //添加方向光         var directionLight = sc...

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

199. 其他引擎的Demo-Example_23 [ 68%]

...pos1.x, pos1.y); laser.pivotY = 43 / 2; laser.blendMode = "lighter"; laser.rotation = (Math.atan2(distY, distX) + Math.PI) * 180 / Math.PI; lasers.push(laser); Laya.stage.addChild(laser); frequency *= 0.9; } for (var i = 0; i 60 * 0.3) { laser.alpha *= 0.9; laser.scaleY = laser.alpha; if (laser.alph...

来源: Laya_示例 发布时间: 20241117

200. Sprite3D-Sprite3D克隆 [ 68%]

... camera.transform.translate(new Laya.Vector3(0, 0.5, 1)); camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); Laya.loader.create("../../res/threeDimen/skinModel/LayaMonkey/LayaMonkey.lh", Laya.Handler.create(this, onComplete)); function onComplete() { var layaMonkey = scene.addChild(L...

来源: Laya_示例 发布时间: 20241117