/************************************************************************************ * FileName : Layout_UIBattleLoading.ts * Description : * Version : v1.0.0 * CreateTime : 2024-11-26 08:41:07 * Author : * Copyright (c) since 2024 * ============================================================== * Method Description: * * ============================================================== ************************************************************************************/ import { _decorator, Component, Node } from 'cc'; const { ccclass, property } = _decorator; @ccclass('Layout_UIBattleLoading') export class Layout_UIBattleLoading extends Component { @property(Node) bg_1 : Node = null; @property(Node) bg_2 : Node = null; @property(Node) bg_3 : Node = null; }