大约有 720 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0044 秒)
Laya_社区(328) Laya3.0_api(99) Laya2.0_api(82) laya_api(76) Laya2.0_文档(63) Laya_示例(46) Laya3.0_文档(14) Laya2.0_示例(12)
...任何改变外观的属性都将导致图形重绘: ```javascript var rotation:int = 0, scale:int = 1, position:int = 0; private function setRotation(value):void { this.rotation = value; update(); } private function setScale(value):void { this.scale =...
来源: Laya2.0_文档 发布时间: 20210715
...ocalPositionZ : Number 获取局部位置Z轴分量。 Transform3D localRotation : Quaternion 获取局部旋转。 Transform3D localRotationEuler : Vector3 获取局部空间欧拉角。 Transform3D localRotationEulerX : Number 获取局部空间的X轴欧拉角。 Transform3D localRota...
来源: Laya2.0_api 发布时间: 20190513
...任何改变外观的属性都将导致图形重绘: ```javascript var rotation=0, scale=1, position=0; function setRotation(value) { rotation=value; update(); } function setScale(value) { scale = value; update(); } function setPosition(value) { position = value; update(); } function update() { co...
来源: Laya2.0_文档 发布时间: 20210715
... "customProps":{ "translate":[ 0, 0, 0 ], "rotation":[ 0, 0, 0, -1 ], "scale":[ 1, 1, 1 ] }, "child":[ { "type":"Sprite3D", "props":{ "isStatic":false, "name":"jacket_default" ...
来源: Laya_社区 发布时间: 20181013
...amera.transform.translate(new Laya.Vector3(0, 0.8, 1.5)); camera.transform.rotate(new Laya.Vector3(-15, 0, 0), true, false); var directionLight = scene.addChild(new Laya.DirectionLight()); directionLight.color = new Laya.Vector3(0.6, 0.6, 0.6); directionLight.direction = new Laya.Vector3(1, -1, -1);...
来源: Laya_示例 发布时间: 20241117
如何限制旋转角度 我用sphere.transform.rotate(vecty,false,false); 旋转这个球体的X轴角度,假定是个地球仪,怎么限制转到北极或南极就不让它转了,如果转到北极或南极仍然能继续转的话,地球就成倒置的,不符合实际需求,怎么处...
来源: Laya_社区 发布时间: 20180518
...两句修正方向 Laya.stage.getChildAt(0).getChildByName("A").transform.rotation.invert(Laya.stage.getChildAt(0).getChildByName("A").transform.rotation) Laya.stage.getChildAt(0).getChildByName("A").transform.rotation = Laya.stage.getChildAt(0).getChildByName("A").transform.rotation 都指出来...
来源: Laya_社区 发布时间: 20220923
... var tf:Matrix=new Matrix(); tf.translate(-thisp.x,-thisp.y); __jd+=jd; tf.rotate(__jd); tf.translate(thisp.x,thisp.y); var otf:Matrix=new Matrix();//photoimg.transform?photoimg.transform:new Matrix(); //trace("jjjj1",photoimg.x,photoimg.y,photoimg.width,photoimg.height,photoimg.rotation); photoimg....
来源: Laya_社区 发布时间: 20161124
...[0].stageY - touches[1].stageY, touches[0].stageX - touches[1].stageX); sp.rotation += 180 / Math.PI * (nowRadian - preRadian); preRadian = nowRadian; } } function onMouseUp(e) { Laya.stage.off(Event.MOUSE_MOVE, this, onMouseMove); } })();module laya { import Sprite = Laya.Sprite; import Stage = Lay...
来源: Laya_示例 发布时间: 20241117
...任何改变外观的属性都将导致图形重绘: ```typescript 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 { thi...
来源: Laya2.0_文档 发布时间: 20210714