1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- import { _decorator, Component, Label, Node } from 'cc';
- import { Props3Action } from './Props3Action';
- import { Props1Action } from './Props1Action';
- import { AudioMgr } from './AudioMgr';
- import { Clips } from './Enums';
- import { Props2Action } from './Props2Action';
- import { BasePage } from './BasePage';
- import { Props4Action } from './Props4Action';
- import { CatAction } from './CatAction';
- import { Global } from './Global';
- const { ccclass, property } = _decorator;
- @ccclass('PropsAction')
- export class PropsAction extends BasePage {
- @property(Props3Action)
- props3_Action: Props3Action = null;
- @property(Props1Action)
- props1_Action: Props1Action = null;
- @property(Props2Action)
- props2_Action: Props2Action = null;
- @property(Props4Action)
- props4_Action: Props4Action = null;
- @property(Label)
- coins_label: Label = null;
- start() {
- super.start();
- }
- update(deltaTime: number) {
- }
- /**
- * show menu
- * @param btn_num
- */
- open(btn_num: number = 0) {
- super.open();
- this.set_child_active_false();
- switch (btn_num) {
- case 1:
- this.props1_Action.node.active = true;
- this.props1_Action.open();
- break;
- case 2:
- this.props2_Action.node.active = true;
- this.props2_Action.open();
- break;
- case 3:
- this.props3_Action.node.active = true;
- this.props3_Action.open();
- break;
- case 4:
- this.props4_Action.node.active = true;
- this.props4_Action.open();
- break;
- }
- this.coins_label.string = Global.cur_coins+"";
- }
- show_box(cat_action:CatAction){
- this.open(4);
- this.props4_Action.show_box(cat_action);
- }
- private set_child_active_false() {
- this.props1_Action.node.active = false;
- this.props2_Action.node.active = false;
- this.props3_Action.node.active = false;
- this.props4_Action.node.active = false;
- }
- close() {
- this.set_child_active_false();
- super.close();
- }
- }
|