大约有 2 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0018 秒)
...某个名字的子节点,通常会调用如下方法来获取子节点 getChildByName("xxx") /** * 根据子节点的名字,获取子节点对象。 * @param name 子节点的名字。 * @return 节点对象。 */ getChildByName(name: string): Node { for (let child of this._children) { if (child...
来源: Laya3.0_文档 发布时间: 20241014
...tateInfo.playState = playstate; this._label = animator.owner.scene.scene2D.getChildByName("Label"); } constructor() { super(); } /** * 动画状态开始时执行。 */ onStateEnter(): void { console.log("动画开始播放了"); this._label.text = "开始跑动画"; } /** * 动画状态运行中 * ...
来源: Laya3.0_文档 发布时间: 20241014