const { ccclass, property } = cc._decorator; @ccclass /** * 框架开关 */ export default class MKSwitch extends cc.Component { @property({ displayName: "是否显示广告", tooltip: "", serializable: true, }) public ifShowAd: boolean = false; }