MKSwitch.ts 305 B

12345678910111213141516
  1. const { ccclass, property } = cc._decorator;
  2. @ccclass
  3. /**
  4. * 框架开关
  5. */
  6. export default class MKSwitch extends cc.Component {
  7. @property({
  8. displayName: "是否显示广告",
  9. tooltip: "",
  10. serializable: true,
  11. })
  12. public ifShowAd: boolean = false;
  13. }