30 lines
910 B
TypeScript
30 lines
910 B
TypeScript
/************************************************************************************
|
|
|
|
* FileName : Layout_UIDanChange.ts
|
|
* Description :
|
|
* Version : v1.0.0
|
|
* CreateTime : 2024-12-09 14:54:34
|
|
* Author :
|
|
* Copyright (c) since 2024
|
|
* ==============================================================
|
|
* Method Description:
|
|
*
|
|
* ==============================================================
|
|
************************************************************************************/
|
|
import { _decorator, Component, Node, Button, Label, Sprite } from 'cc';
|
|
const { ccclass, property } = _decorator;
|
|
|
|
@ccclass('Layout_UIDanChange')
|
|
export class Layout_UIDanChange extends Component {
|
|
@property(Button)
|
|
closeBtn : Button = null;
|
|
|
|
@property(Label)
|
|
curDanLabel : Label = null;
|
|
|
|
@property(Label)
|
|
curStarChangeLabel : Label = null;
|
|
|
|
@property(Sprite)
|
|
icon : Sprite = null;
|
|
} |