Files
pixelheros/assets/script/game/common/Notity.ts
walkpan 7a3d7dba2f feat(ui): 新增通知组件和配置
添加 Notity UI 组件,包括 TypeScript 脚本、预制体和 UI 配置,用于在游戏中显示通知信息。
2026-03-28 13:16:13 +08:00

20 lines
303 B
TypeScript

import { _decorator, Component, Label, Node } from 'cc';
const { ccclass, property } = _decorator;
@ccclass('Notity')
export class Notity extends Component {
@property(Label)
private lab_content: Label = null!;
start() {
}
update(deltaTime: number) {
}
}