cb/assets/Gacha/script/GachaManager.ts
COMPUTER\EDY e72bead10b 更新
2026-04-02 16:01:30 +08:00

24 lines
419 B
TypeScript

import NumberToImage from "../../Script/NumberToImage";
const { ccclass, property } = cc._decorator;
//排行榜
@ccclass
export default class GachaManager extends cc.Component {
@property(cc.Sprite) //用户头像换图
phone: cc.Sprite = null;
onLoad() {
this.node.opacity = 0;
// this.init();
}
//初始化数据
init(data, topData) {
}
start() {
}
}