| 123456789101112 |
- import { _decorator, Component, Node, Label, ProgressBar } from 'cc';
- const { ccclass, property } = _decorator;
- @ccclass('PVPHeroUI')
- export class PVPHeroUI extends Component {
- @property({ type: Label, tooltip: "星级" }) starLabel: Label;
- @property({ type: Label, tooltip: "等级" }) lvLabel: Label;
- @property({ type: Label, tooltip: "名字" }) nameLabel: Label;
- @property({ type: Label, tooltip: "血量文本" }) bloodLabel: Label;
- @property({ type: ProgressBar, tooltip: "血量进度" }) bloodProgress: ProgressBar;
- }
|