大约有 38 项符合查询结果, 库内数据总量为 30,786 项。 (搜索耗时: 0.0035 秒)
3d对象使用addChild后localPosition没有变化 讲世界中的对象add进某个子节点后localPosition,localScale等都没有发生变化,结果对象移动到诡异的位置去了blob:https://ask.layabox.com/9fe227 ... 55d85 附件 : --> 2020-08-19 添加评论 免费帖 --> 分享 微博 Q...
来源: Laya_社区 发布时间: 20200819
修改position与修改localPosition结果不一致(同处于3d场景下的两个节点) //添加自定义模型 var box: Laya.MeshSprite3D = scene.addChild(new Laya.MeshSprite3D(Laya.PrimitiveMesh.createBox(1, 1, 1))) as Laya.MeshSprite3D; box.transform.rotate(new Laya.Vector3(0, 45, 0), false, fa...
来源: Laya_社区 发布时间: 20190717
发现一个bug:用setValue()改变模型的localposition属性值的时候,没有相应的改变position的属性值;反之也是一样 这个问题出在使用setValue()这个函数使用的时候 2018-12-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀...
来源: Laya_社区 发布时间: 20181218
... = new Laya.CompoundColliderShape(); this.cube.transform.localPosition = new Laya.Vector3(); } let pos = this.cubeP.transform.position; pos.z += dis; this.cubeP.transform.position = pos; if(this.cube.transform.localPositio...
来源: Laya_社区 发布时间: 20200223
...maze/img/demo/toolClock/Conventional/glow.lh").clone() glow.transform.localPosition = new Laya.Vector3(-1,0,-i); this.scene.addChild(glow); let puzzleA = Laya.Loader.getRes("res/maze/img/demo/toolClock/Conventional/puzzleA.lh").clone() puzzleA.transform.localPosition = new Laya.Vector...
来源: Laya_社区 发布时间: 20191209
...ild(sp); sp.on(Laya.Event.HIERARCHY_LOADED, this, function(){ sp.transform.localPosition = new Laya.Vector3(1, 1, 1); var scale = 1; var v3 = sp.transform.localScale; v3.x = scale; v3.y = scale; v3.z = scale; sp.transform.localScale = v3; }) //这个物体里摄像机更远 var sp1 = Laya.Sprite3D.l...
来源: Laya_社区 发布时间: 20170504
...e.meshRenderer.sharedMaterial = boxMat; var localPos = boxSprite.transform.localPosition; var rad = ((Math.PI * 2) / oneCircleCount) * j; Laya.Matrix4x4.createRotationY(rad, radMatrix); Laya.Vector3.transformCoordinate(radius, radMatrix, localPos); boxSprite.transform.localPosition = localPos; scene...
来源: Laya_社区 发布时间: 20191112
... var camera = new Laya.Camera(); 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); //控制摄像机 cam...
来源: Laya_社区 发布时间: 20170524
...ale = new Laya.Vector3( 0.01125, 0.01125, 0.01125 ); clonesprite.transform.localPosition = new Laya.Vector3(0, 0, 0); // 使用以下代码ios小游戏内显示正常 // scene.addChild(sprite) as Laya.Sprite3D; // sprite.transform.localScale = new Laya.Vector3( // 0.01125, // 0.01125, // 0.01125 // ...
来源: Laya_社区 发布时间: 20220721
....transform.rotate(new Laya.Vector3(0, 45, 0), false, false); box.transform.localPosition = new Laya.Vector3((i-5)*boxSize*1.1,0,j*boxSize*1.1-1); var material = new Laya.StandardMaterial(); material.diffuseTexture = Laya.Texture2D.load("res/layabox.png"); material.albedo = new Laya.Vector4(1,0,1,1);...
来源: Laya_社区 发布时间: 20180117