大约有 720 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0051 秒)
Laya_社区(328) Laya3.0_api(99) Laya2.0_api(82) laya_api(76) Laya2.0_文档(63) Laya_示例(46) Laya3.0_文档(14) Laya2.0_示例(12)
... 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_示例 发布时间: 20241118
...插件. 首先导入我上传的这个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
...法用下面的写法,如果需要绕本地旋转应该怎么写 而且rotate函数只是描述增量,目标态应该怎么定义 可以看到local和world坐标系不重合时,两个值依然保持一致 附件 : --> 2020-06-30 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有...
来源: Laya_社区 发布时间: 20200630
...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
...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
...,对它设置任何改变外观的属性都将导致图形重绘: 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
3D旋转如何做tween缓动?目前尝试了localRotationEuler,rotationEuler。 3D旋转如何做tween缓动?目前尝试了localRotationEuler,rotationEuler。 1.rotationEuler只有set方法,没有get方法,没办法做缓动。 2.localRotationEuler有get和set方法,但是有万向...
来源: Laya_社区 发布时间: 20170829
...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
...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_示例 发布时间: 20241118
... 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_示例 发布时间: 20241118