24 lines
419 B
TypeScript
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() {
|
|
}
|
|
|
|
}
|