squidGame/tgx-games-client/assets/module_arean/ui_hero_details/Layout_UISkillDetails.ts

33 lines
987 B
TypeScript
Raw Normal View History

2025-02-07 10:49:34 +08:00
/************************************************************************************
* FileName : Layout_UISkillDetails.ts
* Description : 技能详情界面
* Version : v1.0.0
* CreateTime : 2024-10-24 10:49:59
* Author :
* Copyright (c) since 2024
* ==============================================================
* Method Description:
*
* ==============================================================
************************************************************************************/
import {_decorator, Button, Component, Node, Label, PageView, ScrollView} from 'cc';
const { ccclass, property } = _decorator;
@ccclass('Layout_UISkillDetails')
export class Layout_UISkillDetails extends Component {
@property(Button)
btnClose : Button = null;
@property(ScrollView)
scroll : ScrollView = null;
@property(Label)
title : Label = null;
@property(Label)
title2 : Label = null;
@property(Node)
cell : Node = null;
}