消消方块阵换皮表情
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.
 
 
 

25 lines
684 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_pageShop')
export class Auto_pageShop extends UIBase {
ui_scrollView:Node;
ui_content:Node;
onLoad(){
super.onLoad();
this.ui_scrollView = find("ui_scrollView",this.node);
this.ui_content = find("ui_scrollView/view/ui_content",this.node);
}
onEnable() {
}
onDisable() {
}
}