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.
34 lines
1.0 KiB
34 lines
1.0 KiB
|
|
//*********************
|
|
// create by 流云
|
|
// 插件自动生成的节点脚本
|
|
// 请勿修改(自动生成会覆盖)
|
|
// 请通过子类继承使用
|
|
//*********************
|
|
import { _decorator, Component, Node, find, Sprite, Label, Button, ScrollView, EditBox, RichText, Mask } from 'cc';
|
|
import { UIBase } from '../../../mx/module/ui/UIBase';
|
|
const { ccclass } = _decorator;
|
|
|
|
@ccclass('Auto_NewGuideMask')
|
|
export class Auto_NewGuideMask extends UIBase {
|
|
guideDesc:RichText = null
|
|
shouzhiNode:Node = null
|
|
guideNode:Node = null
|
|
|
|
maskNode:Mask = null
|
|
maskBlackNode:Node = null
|
|
onLoad(){
|
|
super.onLoad();
|
|
this.guideDesc = find("引导框/guideStr",this.node).getComponent(RichText);
|
|
this.shouzhiNode = find("dianji",this.node)
|
|
this.guideNode = find("引导框",this.node)
|
|
this.maskNode = find("maskNode",this.node).getComponent(Mask)
|
|
this.maskBlackNode = find("maskNode/maskBlackNode",this.node)
|
|
}
|
|
onEnable() {
|
|
|
|
}
|
|
onDisable() {
|
|
|
|
}
|
|
} |