You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
749 B
27 lines
749 B
|
|
//*********************
|
|
// create by 流云
|
|
// 插件自动生成的节点脚本
|
|
// 请勿修改(自动生成会覆盖)
|
|
// 请通过子类继承使用
|
|
//*********************
|
|
import { _decorator, Component, Node, find, Sprite, Label, Button, ScrollView, EditBox } from 'cc';
|
|
import { UIBase } from '../../../mx/module/ui/UIBase';
|
|
const { ccclass } = _decorator;
|
|
|
|
@ccclass('Auto_PopNotice')
|
|
export class Auto_PopNotice extends UIBase {
|
|
ui_bgMask:Node;
|
|
ui_center:Node;
|
|
lb_title:Label;
|
|
onLoad(){
|
|
super.onLoad();
|
|
this.ui_bgMask = find("ui_bgMask",this.node);
|
|
this.ui_center = find("ui_center",this.node);
|
|
this.lb_title = find("ui_center/lb_title",this.node)?.getComponent(Label);
|
|
}
|
|
onEnable() {
|
|
}
|
|
onDisable() {
|
|
}
|
|
} |