12345678910111213141516171819202122232425262728293031 |
- import { _decorator, Button, Component, Label, Node, ProgressBar, Sprite, SpriteFrame } from 'cc';
- const { ccclass, property } = _decorator;
- @ccclass('Layout_Invite')
- export class Layout_Invite extends Component {
- @property(Button)
- Close_Btn;
- @property(Button)
- Invite_Friend_Btn;
- @property(Button)
- Refresh_Btn;
- @property(ProgressBar)
- progressBar;
- @property(Label)
- Txt;
- @property([SpriteFrame])
- Num: SpriteFrame[] = [];
- @property(Sprite)
- Num_Sp:Sprite;
- target_count=3;
- count=1;
- }
|