//********************* // create by 流云 // time: Mon Apr 27 2026 // desc: //********************* import { _decorator, Component, Node , find} from 'cc'; import { Auto_pageRole } from './Auto_pageRole'; const { ccclass, property } = _decorator; @ccclass('UIpageRole') export class UIpageRole extends Auto_pageRole { onLoad(): void { super.onLoad(); } onEnable(): void { super.onEnable(); } onDisable(): void { super.onDisable(); } onInit(): void { this.btnChangeSkin.active = false; } }