大约有 34 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0045 秒)
...: 与内容相关的链接 提交 2 个回复 Apple 赞同来自: object.getchildat(0).getchildat(0) 2018-04-11 0 0 分享 微博 QZONE 微信 w1114367261 赞同来自: 你可以跟句下标获对应子物体 numChildren是获取子物体数量 然后使用getChildAt(i)根据下标获取相应子物...
来源: Laya_社区 发布时间: 20180411
...管理员看看思路是不是这样的(实现挂点): body = role.getChildAt(0).getChildAt(0) as SkinnedMeshSprite3D; // animationNodeTemp.addChild(effect); body.addComponent(SkinAnimations); this.skinAnimation = body.getComponentByType(SkinAnimations) as SkinAnimations; this.skinAnimation._i...
来源: Laya_社区 发布时间: 20170819
...后,就不能再使用transform.rotate了 laya3D, ... var ele=eleroot.getChildAt(0).clone(); ele.transform.position=new Laya.Vector3(0, 0, 0); scene.addChild(ele); ... ele.transform.rotate(new Laya.Vector3(10, 0, 0), true); //这里会有效 ele.transform.localRotation=new Laya.Quaternion(0, 0,0...
来源: Laya_社区 发布时间: 20170323
...来自: 将示例中对应的代码改成这样的: (<Sprite3D>sp3.getChildAt(0).getChildAt(0).getChildAt(1).getChildAt(0)).layer = layer; 2022-05-06 0 14 分享 微博 QZONE 微信 为什么被折叠? 0 个回复被折叠 要回复问题请先登录 发起人 158*****197 相关问题 发起...
来源: Laya_社区 发布时间: 20220506
... console.log(this.numChildren); var item = this.getChildAt(i); if(item instanceof Item) { item.removeSelf(); item.visible = true; Pool.recover("item", item); i...
来源: Laya_社区 发布时间: 20170113
...ckground.setImage('assets/major/waysheet/ludan_small_7.png'); } background.getChildAt(0).visible = (element.pairSide & 1) == 1; background.getChildAt(1).visible = (element.pairSide & 2) == 2; if (element.pairSide == 3) { background.getChildAt(0).visible = true; background.getChildAt(1).visib...
来源: Laya_社区 发布时间: 20170324
...架的时候,我获取点击的子节点改变反照率颜色 this.owner.getChildAt(0).meshRenderer.sharedMaterial.albedoColor = new Laya.Vector4(0.0, 1.0, 0.0, 1.0); 然后,所有架子的这个子节点都改变了. 附件 : --> 2019-04-16 添加评论 免费帖 --> 分享 微博 QZONE 微信 ...
来源: Laya_社区 发布时间: 20190416
....Event.HIERARCHY_LOADED, null, function (sprite) { var meshSprite = sprite.getChildAt(0);//此对象不一定是MeshSprite3D类型,会导致出错 var mesh = meshSprite.meshFilter.sharedMesh; mesh.once(Laya.Event.LOADED, null, function (mesh) { for (var i = 0; i < meshSprite.meshRender.sharedMa...
来源: Laya_社区 发布时间: 20161021
...Player中输出的位置信息不一致: var player :Player = Laya.stage.getChildAt(i) as Player; console.log(player.x); 附:在Player中输出x的信息 一直为0 但是在Monster类中输出Player的x的数据一直是497,0,494,0,491,0,488,0.......这样的 2018-08-28 添加评...
来源: Laya_社区 发布时间: 20180828
... i < node.numChildren; i++) { let sprite = node.getChildAt(i) as Laya.Sprite; if (sprite) { //if (sprite instanceof Laya.Text) { // if (set) { // ...
来源: Laya_社区 发布时间: 20170717