[fix] HoldButton 點擊事件衝突

This commit is contained in:
2022-05-05 19:19:28 +08:00
parent 4aabd0b866
commit d771dd7593
20 changed files with 3594 additions and 6079 deletions

View File

@@ -0,0 +1,13 @@
import { AvatarData } from "../Badminton/MemberData";
const { ccclass, property } = cc._decorator;
@ccclass
export default class AvatarSettings extends cc.Component {
//#region property
@property({ type: [AvatarData] })
public Avatars: AvatarData[] = [];
//#endregion
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.0.8",
"uuid": "fdefeb01-d27d-4efb-80b8-bc50efad3e18",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}

View File

@@ -0,0 +1,11 @@
const { ccclass, property } = cc._decorator;
@ccclass
export default class GameConfig extends cc.Component {
//#region property
@property({ type: [cc.String] })
public Members: string[] = [];
//#endregion
}

View File

@@ -0,0 +1,9 @@
{
"ver": "1.0.8",
"uuid": "f71e5db1-de2b-4f7a-8f2b-27389a68724e",
"isPlugin": false,
"loadPluginInWeb": true,
"loadPluginInNative": true,
"loadPluginInEditor": false,
"subMetas": {}
}