大约有 4 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0022 秒)
... treeData += "<dir label='box1' isOpen='true'>" + "<file label='child1 ' />" + "<file label='child2 ' />" + "<file label='child3 ' />" + "<file label='child4 ' />" + "<file label='child5 ' />" + "</dir>" + "<dir label='box2' isOpen='false'>" + "<fil...
来源: Laya3.0_文档 发布时间: 20241014
...括子节点下 searchButton(ui: Laya.Node) { for (let i = 0; i < ui.numChildren; i++) { let child = ui.getChildAt(i); if (child instanceof Laya.Button) { console.log("发现Button"); this.onButtonScaleEvent(child); } else { //查找子节点 this.searchButton(child); } } } //处理按钮缩放...
来源: Laya3.0_文档 发布时间: 20241014
...个名字的子节点,通常会调用如下方法来获取子节点 getChildByName("xxx") /** * 根据子节点的名字,获取子节点对象。 * @param name 子节点的名字。 * @return 节点对象。 */ getChildByName(name: string): Node { for (let child of this._children) { if (child &a...
来源: Laya3.0_文档 发布时间: 20241014
...系统,用于后面整体播放 for (var i = 0, len = this._particle.numChildren; i < len; i++) { var child:Node = this._particle.getChildAt(i); if (child instanceof Laya.ShuriKenParticle3D) { this._shuriKenParticle3D.push(child); this._shurikenParticleSystem.push(child.particleSystem); } } thi...
来源: Laya3.0_文档 发布时间: 20241014