From 5e14bd627913f69a1a064329fc0ceee5d847192d Mon Sep 17 00:00:00 2001 From: Tu Bui <> Date: Wed, 11 Jun 2025 17:40:35 +0700 Subject: [PATCH] add setting template --- assets/core/event-system.meta | 13 + .../core/event-system/cocos-event-target.ts | 2 + .../event-system/cocos-event-target.ts.meta | 10 + assets/core/setting.meta | 13 + assets/core/setting/prefabs.meta | 13 + assets/core/setting/prefabs/setting.prefab | 3799 +++++++++++++++++ .../core/setting/prefabs/setting.prefab.meta | 9 + assets/core/setting/scripts.meta | 13 + assets/core/setting/scripts/component.meta | 13 + .../scripts/component/setting-component.ts | 84 + .../component/setting-component.ts.meta | 10 + .../component/setting-toggle-button.ts | 28 + .../component/setting-toggle-button.ts.meta | 10 + .../setting/scripts/event-setting-config.ts | 13 + .../scripts/event-setting-config.ts.meta | 10 + assets/core/setting/textures.meta | 13 + assets/core/setting/textures/btn-expand.png | Bin 0 -> 1107 bytes .../core/setting/textures/btn-expand.png.meta | 38 + assets/core/setting/textures/btn-history.png | Bin 0 -> 1481 bytes .../setting/textures/btn-history.png.meta | 38 + assets/core/setting/textures/btn-home.png | Bin 0 -> 1574 bytes .../core/setting/textures/btn-home.png.meta | 38 + assets/core/setting/textures/btn-info.png | Bin 0 -> 2135 bytes .../core/setting/textures/btn-info.png.meta | 38 + .../core/setting/textures/btn-music-off.png | Bin 0 -> 1500 bytes .../setting/textures/btn-music-off.png.meta | 38 + assets/core/setting/textures/btn-music-on.png | Bin 0 -> 1097 bytes .../setting/textures/btn-music-on.png.meta | 38 + .../core/setting/textures/btn-option-bg.png | Bin 0 -> 1112 bytes .../setting/textures/btn-option-bg.png.meta | 38 + assets/core/setting/textures/btn-option.png | Bin 0 -> 931 bytes .../core/setting/textures/btn-option.png.meta | 38 + assets/core/setting/textures/btn-retract.png | Bin 0 -> 1096 bytes .../setting/textures/btn-retract.png.meta | 38 + .../core/setting/textures/btn-sound-off.png | Bin 0 -> 1906 bytes .../setting/textures/btn-sound-off.png.meta | 38 + assets/core/setting/textures/btn-sound-on.png | Bin 0 -> 1969 bytes .../setting/textures/btn-sound-on.png.meta | 38 + .../core/setting/textures/btn_gameinfo1.png | Bin 0 -> 2135 bytes .../setting/textures/btn_gameinfo1.png.meta | 38 + .../core/setting/textures/btn_hamburger0.png | Bin 0 -> 2550 bytes .../setting/textures/btn_hamburger0.png.meta | 38 + .../setting/textures/btn_history_ingame0.png | Bin 0 -> 1481 bytes .../textures/btn_history_ingame0.png.meta | 38 + assets/core/setting/textures/btn_music4.png | Bin 0 -> 1097 bytes .../core/setting/textures/btn_music4.png.meta | 38 + .../core/setting/textures/btn_musicoff5.png | Bin 0 -> 1500 bytes .../setting/textures/btn_musicoff5.png.meta | 38 + .../setting/textures/btn_soundeffect3.png | Bin 0 -> 1969 bytes .../textures/btn_soundeffect3.png.meta | 38 + .../setting/textures/btn_soundeffectoff2.png | Bin 0 -> 1906 bytes .../textures/btn_soundeffectoff2.png.meta | 38 + assets/core/setting/textures/shadow.png | Bin 0 -> 3055 bytes assets/core/setting/textures/shadow.png.meta | 38 + 54 files changed, 4775 insertions(+) create mode 100644 assets/core/event-system.meta create mode 100644 assets/core/event-system/cocos-event-target.ts create mode 100644 assets/core/event-system/cocos-event-target.ts.meta create mode 100644 assets/core/setting.meta create mode 100644 assets/core/setting/prefabs.meta create mode 100644 assets/core/setting/prefabs/setting.prefab create mode 100644 assets/core/setting/prefabs/setting.prefab.meta create mode 100644 assets/core/setting/scripts.meta create mode 100644 assets/core/setting/scripts/component.meta create mode 100644 assets/core/setting/scripts/component/setting-component.ts create mode 100644 assets/core/setting/scripts/component/setting-component.ts.meta create mode 100644 assets/core/setting/scripts/component/setting-toggle-button.ts create mode 100644 assets/core/setting/scripts/component/setting-toggle-button.ts.meta create mode 100644 assets/core/setting/scripts/event-setting-config.ts create mode 100644 assets/core/setting/scripts/event-setting-config.ts.meta create mode 100644 assets/core/setting/textures.meta create mode 100644 assets/core/setting/textures/btn-expand.png create mode 100644 assets/core/setting/textures/btn-expand.png.meta create mode 100644 assets/core/setting/textures/btn-history.png create mode 100644 assets/core/setting/textures/btn-history.png.meta create mode 100644 assets/core/setting/textures/btn-home.png create mode 100644 assets/core/setting/textures/btn-home.png.meta create mode 100644 assets/core/setting/textures/btn-info.png create mode 100644 assets/core/setting/textures/btn-info.png.meta create mode 100644 assets/core/setting/textures/btn-music-off.png create mode 100644 assets/core/setting/textures/btn-music-off.png.meta create mode 100644 assets/core/setting/textures/btn-music-on.png create mode 100644 assets/core/setting/textures/btn-music-on.png.meta create mode 100644 assets/core/setting/textures/btn-option-bg.png create mode 100644 assets/core/setting/textures/btn-option-bg.png.meta create mode 100644 assets/core/setting/textures/btn-option.png create mode 100644 assets/core/setting/textures/btn-option.png.meta create mode 100644 assets/core/setting/textures/btn-retract.png create mode 100644 assets/core/setting/textures/btn-retract.png.meta create mode 100644 assets/core/setting/textures/btn-sound-off.png create mode 100644 assets/core/setting/textures/btn-sound-off.png.meta create mode 100644 assets/core/setting/textures/btn-sound-on.png create mode 100644 assets/core/setting/textures/btn-sound-on.png.meta create mode 100644 assets/core/setting/textures/btn_gameinfo1.png create mode 100644 assets/core/setting/textures/btn_gameinfo1.png.meta create mode 100644 assets/core/setting/textures/btn_hamburger0.png create mode 100644 assets/core/setting/textures/btn_hamburger0.png.meta create mode 100644 assets/core/setting/textures/btn_history_ingame0.png create mode 100644 assets/core/setting/textures/btn_history_ingame0.png.meta create mode 100644 assets/core/setting/textures/btn_music4.png create mode 100644 assets/core/setting/textures/btn_music4.png.meta create mode 100644 assets/core/setting/textures/btn_musicoff5.png create mode 100644 assets/core/setting/textures/btn_musicoff5.png.meta create mode 100644 assets/core/setting/textures/btn_soundeffect3.png create mode 100644 assets/core/setting/textures/btn_soundeffect3.png.meta create mode 100644 assets/core/setting/textures/btn_soundeffectoff2.png create mode 100644 assets/core/setting/textures/btn_soundeffectoff2.png.meta create mode 100644 assets/core/setting/textures/shadow.png create mode 100644 assets/core/setting/textures/shadow.png.meta diff --git a/assets/core/event-system.meta b/assets/core/event-system.meta new file mode 100644 index 0000000..e8116cf --- /dev/null +++ b/assets/core/event-system.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "71eeac1e-9948-45cc-9141-b00b2a70d502", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/event-system/cocos-event-target.ts b/assets/core/event-system/cocos-event-target.ts new file mode 100644 index 0000000..ee2b6bb --- /dev/null +++ b/assets/core/event-system/cocos-event-target.ts @@ -0,0 +1,2 @@ +const EventDispatcher = new cc.EventTarget(); +export default EventDispatcher; \ No newline at end of file diff --git a/assets/core/event-system/cocos-event-target.ts.meta b/assets/core/event-system/cocos-event-target.ts.meta new file mode 100644 index 0000000..e7488aa --- /dev/null +++ b/assets/core/event-system/cocos-event-target.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "f79b0220-2938-490e-98c2-d0a984071f5a", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/setting.meta b/assets/core/setting.meta new file mode 100644 index 0000000..782596a --- /dev/null +++ b/assets/core/setting.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "3899c16c-35df-4246-b4ed-b20d2cf939ba", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/setting/prefabs.meta b/assets/core/setting/prefabs.meta new file mode 100644 index 0000000..62ad9fa --- /dev/null +++ b/assets/core/setting/prefabs.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "d75d7317-91e8-4ae2-90d4-ce62df32e96b", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/setting/prefabs/setting.prefab b/assets/core/setting/prefabs/setting.prefab new file mode 100644 index 0000000..54b79fb --- /dev/null +++ b/assets/core/setting/prefabs/setting.prefab @@ -0,0 +1,3799 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "setting", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 101 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 103 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 1280 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 1000, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "component", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 3 + }, + { + "__id__": 86 + } + ], + "_active": true, + "_components": [ + { + "__id__": 99 + } + ], + "_prefab": { + "__id__": 100 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 1280 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "container", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 4 + }, + { + "__id__": 6 + }, + { + "__id__": 13 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 85 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 1280 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "background", + "_objFlags": 0, + "_parent": { + "__id__": 3 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 5 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 1280 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "385HUlB0ZO/6K1R1rH61tc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "shadow-component", + "_objFlags": 0, + "_parent": { + "__id__": 3 + }, + "_children": [ + { + "__id__": 7 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 12 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 1280 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "hide-setting-button", + "_objFlags": 0, + "_parent": { + "__id__": 6 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 8 + }, + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 11 + }, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 720, + "height": 1280 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "297b86d7-e7d6-44fd-8782-e3dc3e73004f" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 10 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 0, + "transition": 0, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": null, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "3d183qTy3RGEIoQELI8uVAU", + "handler": "hide", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1dSXipJbpOzqvpq1j3FDtp", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0cd382AahFAYbRFH9PipC1", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "sub-buttons-component", + "_objFlags": 0, + "_parent": { + "__id__": 3 + }, + "_children": [ + { + "__id__": 14 + }, + { + "__id__": 25 + }, + { + "__id__": 36 + }, + { + "__id__": 48 + }, + { + "__id__": 60 + }, + { + "__id__": 72 + } + ], + "_active": true, + "_components": [ + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 155, + "height": 688 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 1 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 342.617, + 534.993, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "button-info", + "_objFlags": 0, + "_parent": { + "__id__": 13 + }, + "_children": [ + { + "__id__": 15 + }, + { + "__id__": 18 + } + ], + "_active": true, + "_components": [ + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 24 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -27.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "spr-button", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "ef38dfa2-9972-4eb6-9f04-5d8452f61381" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e1M1vxacBBRoWjDDCAMuKH", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "txt-info", + "_objFlags": 0, + "_parent": { + "__id__": 14 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 19 + }, + { + "__id__": 20 + } + ], + "_prefab": { + "__id__": 21 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 125.27, + "height": 30.72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -44, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "Game Rules", + "_N$string": "Game Rules", + "_fontSize": 22, + "_lineHeight": 22, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.LabelOutline", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 18 + }, + "_enabled": true, + "_color": { + "__type__": "cc.Color", + "r": 59, + "g": 59, + "b": 59, + "a": 255 + }, + "_width": 1.5, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b0AKtTEZFDF4Mazvu6NLfj", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 14 + }, + "_enabled": true, + "_normalMaterial": { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + }, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 23 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 14 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "3d183qTy3RGEIoQELI8uVAU", + "handler": "onClickInfoButton", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b5n02a9WdMnLmuMzH5bIiA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "button-history", + "_objFlags": 0, + "_parent": { + "__id__": 13 + }, + "_children": [ + { + "__id__": 26 + }, + { + "__id__": 29 + } + ], + "_active": true, + "_components": [ + { + "__id__": 33 + } + ], + "_prefab": { + "__id__": 35 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -127.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "spr-button", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 48, + "height": 46.5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c2b3be0e-0aef-4624-b727-caa32896e3b0" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5s/0WZHFAH4yvFdQK1DOG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "txt-info", + "_objFlags": 0, + "_parent": { + "__id__": 25 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 30 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 71.45, + "height": 30.72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -44, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "History", + "_N$string": "History", + "_fontSize": 22, + "_lineHeight": 22, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.LabelOutline", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_color": { + "__type__": "cc.Color", + "r": 59, + "g": 59, + "b": 59, + "a": 255 + }, + "_width": 1.5, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3cyWvgZV1EXZOrOg8+3ZEY", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 25 + }, + "_enabled": true, + "_normalMaterial": { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + }, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 34 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 25 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "3d183qTy3RGEIoQELI8uVAU", + "handler": "onClickHistoryButton", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c4niLq3iBI5ot8HLEKXt60", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "toggle-button-sfx", + "_objFlags": 0, + "_parent": { + "__id__": 13 + }, + "_children": [ + { + "__id__": 37 + }, + { + "__id__": 40 + } + ], + "_active": true, + "_components": [ + { + "__id__": 44 + }, + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 47 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -227.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "spr-toggle", + "_objFlags": 0, + "_parent": { + "__id__": 36 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 39 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 51, + "height": 49.5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 37 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "80484e30-fbb8-494e-a45a-f54cf4ce3efb" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "91nW2BRqFMPK/Ls0+OavkM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "label-toggle", + "_objFlags": 0, + "_parent": { + "__id__": 36 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 41 + }, + { + "__id__": 42 + } + ], + "_prefab": { + "__id__": 43 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 45.79, + "height": 30.72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -44, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 40 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "SFX", + "_N$string": "SFX", + "_fontSize": 22, + "_lineHeight": 22, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.LabelOutline", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 40 + }, + "_enabled": true, + "_color": { + "__type__": "cc.Color", + "r": 59, + "g": 59, + "b": 59, + "a": 255 + }, + "_width": 1.5, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0fhmlWhgRItKhK+KIEy/Qp", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 36 + }, + "_enabled": true, + "_normalMaterial": { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + }, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 45 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 36 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "3d183qTy3RGEIoQELI8uVAU", + "handler": "onClickSfxButton", + "customEventData": "" + }, + { + "__type__": "9cbdd8anedMXK1LYD45tpQv", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 36 + }, + "_enabled": true, + "labelToggle": { + "__id__": 41 + }, + "spriteToggle": { + "__id__": 38 + }, + "spriteFrameToggleOn": { + "__uuid__": "80484e30-fbb8-494e-a45a-f54cf4ce3efb" + }, + "spriteFrameToggleOff": { + "__uuid__": "9f4d4bd6-7085-43d0-be8f-e0789be2c24c" + }, + "stringToggleOn": "SFX", + "stringToggleOff": "SFX", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d7MCiF3BlELLT4MLRRcG0P", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "toggle-button-music", + "_objFlags": 0, + "_parent": { + "__id__": 13 + }, + "_children": [ + { + "__id__": 49 + }, + { + "__id__": 52 + } + ], + "_active": true, + "_components": [ + { + "__id__": 56 + }, + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 59 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -327.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "spr-toggle", + "_objFlags": 0, + "_parent": { + "__id__": 48 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 51 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33, + "height": 49.5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 49 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4be2eccd-e85d-4d75-9231-bed42e171358" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dbNi65M4VBlqyDlpfzAtMc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "label-toggle", + "_objFlags": 0, + "_parent": { + "__id__": 48 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 53 + }, + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 55 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60.45, + "height": 30.72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -44, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 52 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "Music", + "_N$string": "Music", + "_fontSize": 22, + "_lineHeight": 22, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.LabelOutline", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 52 + }, + "_enabled": true, + "_color": { + "__type__": "cc.Color", + "r": 59, + "g": 59, + "b": 59, + "a": 255 + }, + "_width": 1.5, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e4b8R8UXZH0LO7K+PvrfFt", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 48 + }, + "_enabled": true, + "_normalMaterial": { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + }, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 57 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 48 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "3d183qTy3RGEIoQELI8uVAU", + "handler": "onClickMusicButton", + "customEventData": "" + }, + { + "__type__": "9cbdd8anedMXK1LYD45tpQv", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 48 + }, + "_enabled": true, + "labelToggle": { + "__id__": 53 + }, + "spriteToggle": { + "__id__": 50 + }, + "spriteFrameToggleOn": { + "__uuid__": "d77c6ae5-7ec9-4160-a3af-c2bd8716b88c" + }, + "spriteFrameToggleOff": { + "__uuid__": "8213b93e-60cf-4a19-bf7c-d190857787e5" + }, + "stringToggleOn": "Music", + "stringToggleOff": "Music", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c0GfgD3+xAOpfJgyWAztJu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "toggle-button-expand", + "_objFlags": 0, + "_parent": { + "__id__": 13 + }, + "_children": [ + { + "__id__": 61 + }, + { + "__id__": 64 + } + ], + "_active": true, + "_components": [ + { + "__id__": 68 + }, + { + "__id__": 70 + } + ], + "_prefab": { + "__id__": 71 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -427.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "spr-toggle", + "_objFlags": 0, + "_parent": { + "__id__": 60 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 62 + } + ], + "_prefab": { + "__id__": 63 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 45, + "height": 43.5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 61 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b6e59419-0448-42dc-87ae-17eeafad51bf" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5bp4RRKH9C7K6lt5SECzmW", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "label-toggle", + "_objFlags": 0, + "_parent": { + "__id__": 60 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 65 + }, + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 77.62, + "height": 30.72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -44, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 64 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "Expand", + "_N$string": "Expand", + "_fontSize": 22, + "_lineHeight": 22, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.LabelOutline", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 64 + }, + "_enabled": true, + "_color": { + "__type__": "cc.Color", + "r": 59, + "g": 59, + "b": 59, + "a": 255 + }, + "_width": 1.5, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19h/QR251Mup92N48iyLHx", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 60 + }, + "_enabled": true, + "_normalMaterial": { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + }, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 69 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 60 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "3d183qTy3RGEIoQELI8uVAU", + "handler": "onClickExpandButton", + "customEventData": "" + }, + { + "__type__": "9cbdd8anedMXK1LYD45tpQv", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 60 + }, + "_enabled": true, + "labelToggle": { + "__id__": 65 + }, + "spriteToggle": { + "__id__": 62 + }, + "spriteFrameToggleOn": { + "__uuid__": "b6e59419-0448-42dc-87ae-17eeafad51bf" + }, + "spriteFrameToggleOff": { + "__uuid__": "93f4b9c5-48cc-4ebe-8c74-b5f4d70d1524" + }, + "stringToggleOn": "Expand", + "stringToggleOff": "Shrink", + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19vDBiz0hKLYHjpSOZ6O6n", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "button-home", + "_objFlags": 0, + "_parent": { + "__id__": 13 + }, + "_children": [ + { + "__id__": 73 + }, + { + "__id__": 76 + } + ], + "_active": true, + "_components": [ + { + "__id__": 80 + } + ], + "_prefab": { + "__id__": 82 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 55, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -527.5, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "spr-button", + "_objFlags": 0, + "_parent": { + "__id__": 72 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 75 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 57, + "height": 49.5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 73 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "aad78af6-cbdc-4312-bbe7-d381f6d4c03a" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8cqyL/lSpP0KzKoT8DAOxT", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "txt-info", + "_objFlags": 0, + "_parent": { + "__id__": 72 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 77 + }, + { + "__id__": 78 + } + ], + "_prefab": { + "__id__": 79 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 61.68, + "height": 30.72 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -44, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 76 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "Home", + "_N$string": "Home", + "_fontSize": 22, + "_lineHeight": 22, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 0, + "_underlineHeight": 0, + "_N$horizontalAlign": 0, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.LabelOutline", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 76 + }, + "_enabled": true, + "_color": { + "__type__": "cc.Color", + "r": 59, + "g": 59, + "b": 59, + "a": 255 + }, + "_width": 1.5, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1ctQ/E3wRBd5+WtIi2vlx6", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 72 + }, + "_enabled": true, + "_normalMaterial": { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + }, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.2, + "clickEvents": [ + { + "__id__": 81 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 72 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "3d183qTy3RGEIoQELI8uVAU", + "handler": "onClickHomeButton", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "35Bz3exKBEwY0IfsxiGlq7", + "sync": false + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 13 + }, + "_enabled": true, + "_layoutSize": { + "__type__": "cc.Size", + "width": 155, + "height": 688 + }, + "_resize": 0, + "_N$layoutType": 2, + "_N$cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_N$startAxis": 0, + "_N$paddingLeft": 0, + "_N$paddingRight": 0, + "_N$paddingTop": 0, + "_N$paddingBottom": 0, + "_N$spacingX": 0, + "_N$spacingY": 45, + "_N$verticalDirection": 1, + "_N$horizontalDirection": 0, + "_N$affectedByScale": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fexJqSyv9PbasGAwgR86aQ", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fdDyIqR1FIe7QOh7W90ne3", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "button-setting", + "_objFlags": 0, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 87 + }, + { + "__id__": 92 + } + ], + "_active": true, + "_components": [ + { + "__id__": 97 + } + ], + "_prefab": { + "__id__": 98 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 55 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 317, + 590, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "button-setting-bg", + "_objFlags": 0, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 88 + }, + { + "__id__": 89 + } + ], + "_prefab": { + "__id__": 91 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 87, + "height": 75 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 87 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c02a973e-22a2-4892-a504-5f7aecc7990c" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 87 + }, + "_enabled": true, + "_normalMaterial": { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + }, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 0.9, + "clickEvents": [ + { + "__id__": 90 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 87 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "3d183qTy3RGEIoQELI8uVAU", + "handler": "onSettingButtonClick", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "868BNnGe1Hc6JhEC8u36Gm", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "button-setting", + "_objFlags": 0, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 93 + }, + { + "__id__": 94 + } + ], + "_prefab": { + "__id__": 96 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 51, + "height": 40.5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 92 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e89828af-e9d2-43a5-846a-105096bf7a63" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 92 + }, + "_enabled": true, + "_normalMaterial": { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + }, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 0.9, + "clickEvents": [ + { + "__id__": 95 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 230, + "g": 230, + "b": 230, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 200, + "g": 200, + "b": 200, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 120, + "g": 120, + "b": 120, + "a": 200 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 92 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "3d183qTy3RGEIoQELI8uVAU", + "handler": "onClickSettingButton", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a1x/0ygB5KX7fmB8xxVshV", + "sync": false + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 86 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "67DjzbhF9I9p7dr89mriqw", + "sync": false + }, + { + "__type__": "3d183qTy3RGEIoQELI8uVAU", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "nodeContainer": { + "__id__": 3 + }, + "toggleButtonSfx": { + "__id__": 46 + }, + "toggleButtonMusic": { + "__id__": 58 + }, + "toggleButtonExpand": { + "__id__": 70 + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7eC+qukAlNDJWVkcPy3lUy", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "system", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 102 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3Cy6vSBlFmp8oyzbk0ssP", + "sync": false + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/core/setting/prefabs/setting.prefab.meta b/assets/core/setting/prefabs/setting.prefab.meta new file mode 100644 index 0000000..1705acb --- /dev/null +++ b/assets/core/setting/prefabs/setting.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "4f4d367e-5615-4053-a907-fb0fe59b3074", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/setting/scripts.meta b/assets/core/setting/scripts.meta new file mode 100644 index 0000000..7423c73 --- /dev/null +++ b/assets/core/setting/scripts.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "eb462511-8a0a-4c7e-9909-2beea07963c0", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/setting/scripts/component.meta b/assets/core/setting/scripts/component.meta new file mode 100644 index 0000000..e8f3dc4 --- /dev/null +++ b/assets/core/setting/scripts/component.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "91d02b49-4feb-4921-b3c7-17e77c602080", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/setting/scripts/component/setting-component.ts b/assets/core/setting/scripts/component/setting-component.ts new file mode 100644 index 0000000..c4aa41b --- /dev/null +++ b/assets/core/setting/scripts/component/setting-component.ts @@ -0,0 +1,84 @@ +import EventDispatcher from "../../../event-system/cocos-event-target"; +import { SETTING_EVENT } from "../event-setting-config"; +import { SettingToggleButton } from "./setting-toggle-button"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class SettingComponent extends cc.Component +{ + private isShow: boolean = false; + + @property(cc.Node) + private nodeContainer: cc.Node = null; + @property(SettingToggleButton) + private toggleButtonSfx: SettingToggleButton = null; + @property(SettingToggleButton) + private toggleButtonMusic: SettingToggleButton = null; + @property(SettingToggleButton) + private toggleButtonExpand: SettingToggleButton = null; + + protected onLoad(): void + { + this.hide(); + } + + private show(): void + { + this.isShow = true; + this.nodeContainer.active = true; + } + + private hide(): void + { + this.isShow = false; + this.nodeContainer.active = false; + } + + private onClickSettingButton(): void + { + if (this.isShow) + { + this.hide(); + } else + { + this.show(); + } + } + + private onClickInfoButton(): void + { + EventDispatcher.emit(SETTING_EVENT.OnClickInfoButton); + this.hide(); + } + + private onClickHistoryButton(): void + { + EventDispatcher.emit(SETTING_EVENT.OnClickHistoryButton); + this.hide(); + } + + private onClickSfxButton(): void + { + this.toggleButtonSfx.onClickToggleButton(); + EventDispatcher.emit(SETTING_EVENT.OnClickSFXButton, this.toggleButtonSfx.isOn); + } + + private onClickMusicButton(): void + { + this.toggleButtonMusic.onClickToggleButton(); + EventDispatcher.emit(SETTING_EVENT.OnClickMusicButton, this.toggleButtonMusic.isOn); + } + + private onClickExpandButton(): void + { + this.toggleButtonExpand.onClickToggleButton(); + EventDispatcher.emit(SETTING_EVENT.OnClickExpandButton, this.toggleButtonExpand.isOn); + } + + private onClickHomeButton(): void + { + EventDispatcher.emit(SETTING_EVENT.OnClickHomeButton); + this.hide(); + } +} diff --git a/assets/core/setting/scripts/component/setting-component.ts.meta b/assets/core/setting/scripts/component/setting-component.ts.meta new file mode 100644 index 0000000..2df4033 --- /dev/null +++ b/assets/core/setting/scripts/component/setting-component.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "3d183a93-cb74-4610-8a10-10b23cb95014", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/setting/scripts/component/setting-toggle-button.ts b/assets/core/setting/scripts/component/setting-toggle-button.ts new file mode 100644 index 0000000..d77408a --- /dev/null +++ b/assets/core/setting/scripts/component/setting-toggle-button.ts @@ -0,0 +1,28 @@ +const { ccclass, property } = cc._decorator; + +@ccclass +export class SettingToggleButton extends cc.Component +{ + @property(cc.Label) + labelToggle: cc.Label = null; + @property(cc.Sprite) + spriteToggle: cc.Sprite = null; + + @property(cc.SpriteFrame) + spriteFrameToggleOn: cc.SpriteFrame = null; + @property(cc.SpriteFrame) + spriteFrameToggleOff: cc.SpriteFrame = null; + @property(cc.String) + stringToggleOn: string = ''; + @property(cc.String) + stringToggleOff: string = ''; + + public isOn: boolean = true; + + public onClickToggleButton(): void + { + this.isOn = !this.isOn; + this.spriteToggle.spriteFrame = this.isOn ? this.spriteFrameToggleOn : this.spriteFrameToggleOff; + this.labelToggle.string = this.isOn ? this.stringToggleOn : this.stringToggleOff; + } +} \ No newline at end of file diff --git a/assets/core/setting/scripts/component/setting-toggle-button.ts.meta b/assets/core/setting/scripts/component/setting-toggle-button.ts.meta new file mode 100644 index 0000000..ece81b0 --- /dev/null +++ b/assets/core/setting/scripts/component/setting-toggle-button.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "9cbddf1a-9de7-4c5c-ad4b-603e39b6942f", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/setting/scripts/event-setting-config.ts b/assets/core/setting/scripts/event-setting-config.ts new file mode 100644 index 0000000..c5e81f5 --- /dev/null +++ b/assets/core/setting/scripts/event-setting-config.ts @@ -0,0 +1,13 @@ + + + +export const SETTING_EVENT = { + OnClickInfoButton: 'OnClickInfoButton', + OnClickHistoryButton: 'OnClickHistoryButton', + OnClickSFXButton: 'OnClickSFXButton', + OnClickMusicButton: 'OnClickMusicButton', + OnClickExpandButton: 'OnClickExpandButton', + OnClickHomeButton: 'OnClickHomeButton', +} + + diff --git a/assets/core/setting/scripts/event-setting-config.ts.meta b/assets/core/setting/scripts/event-setting-config.ts.meta new file mode 100644 index 0000000..22abaaf --- /dev/null +++ b/assets/core/setting/scripts/event-setting-config.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "34e4c2fd-06c2-453f-8440-6696f8ba127b", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/setting/textures.meta b/assets/core/setting/textures.meta new file mode 100644 index 0000000..61b8447 --- /dev/null +++ b/assets/core/setting/textures.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "e03ab49a-9850-4f3f-91f6-1f56ee088e50", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/core/setting/textures/btn-expand.png b/assets/core/setting/textures/btn-expand.png new file mode 100644 index 0000000000000000000000000000000000000000..b3db26a281fd66e4734fd37d171822599796789f GIT binary patch literal 1107 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 literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/btn-history.png.meta b/assets/core/setting/textures/btn-history.png.meta new file mode 100644 index 0000000..55a2b29 --- /dev/null +++ b/assets/core/setting/textures/btn-history.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "e31bbb43-db4c-4185-8eeb-2b0ad49eb438", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 32, + "height": 31, + "platformSettings": {}, + "subMetas": { + "btn-history": { + "ver": "1.0.6", + "uuid": "c2b3be0e-0aef-4624-b727-caa32896e3b0", + "importer": "sprite-frame", + "rawTextureUuid": "e31bbb43-db4c-4185-8eeb-2b0ad49eb438", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 32, + "height": 31, + "rawWidth": 32, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/core/setting/textures/btn-home.png b/assets/core/setting/textures/btn-home.png new file mode 100644 index 0000000000000000000000000000000000000000..f6abe979e918fdd901e0392a38115cb1785e43ab GIT binary patch literal 1574 zcmV+>2HE+EP)LT4BO@^~wul@g4*4mH-YM}zK?4=I_i};rwD0?J zZkOx5aPJMy_UxQ{&hxy_=l#CV`wmiCHmR9quEgv6WPrt`Q zXM|cCP1mt@?b9n2UdalF3p2KA_>CoQA6omJElwy^IGTs9&EcUNVZufY;rv0ISI(3} zC9aQr8&Jc2{%mOQX5*Dmk<8RdygHgTS^Acjq*Nu05{UF;gopFR{eh|+E4*7V~elwfpQ}QA)NH8N9mM7?fWWrx56*; z&`n}Plb=Y0BrseX8fNow-+Ue&_B6vC$xkkvR^jd{|`*-vP~1poKppZxBey?BNKhp$iw3SZJnum*2&#->S%b8`)BVf16qbaljajE;n{ zzKR4GpoV*WI4h9`(2D?t z)UFl3KZ&6m9$wz=DLWUhR(Kg38cC=Exa=hQ3Gs`gX0AYTQ#Y}`TE-h{$!xgqG#DBu ziWTi(u!4kIrcRlBT@+P$`99*CaUk+j>@*}1YE~1YxB+)^2UTL6U_bYmJB?ZiH>S91 z7%%Y!k76eqXSC?zgXP47=jH4SwZuzjQqh0AGh8Ss)I`!M>5HU*YdA{1YK`8y;67?r zeryr|bGX5Z#;HV#!39*M9N=Clail+`;hl%wi6t61C!arL6=Rd>ByKGtJvIjvt}60q z6L5H5DJMF3krc~DZ1c!3h{{EgBS=k(fo>KOYl${v@SeY)y9)IN&Was7?5w*V*h*MTH9rAwQf2R0WC7{zp2A9);a$>WR3A8WT|Ej+vSq>ZmVw z^g6Y6`+t?oid?xLQ3WP1ps=&9S3adfhweWumka?2{CT6C>6?iQV)6ddSCR0+V9wZs zQVE8dRhMn+J3e_(9?IdlP`8`-LI(ASPbYxE3A4f=fWiQKR?;0nZT&oAy;!<)#C;_a z+!aGCAfULqZ0L3Pjr+)rYgG*Masm!(kB9qKQ7@>`4zRpX=`O5f?5ti}n)N+9J^;Y7 zol2n^Cb zx{KvTTJ{8`PYPrSraSFr>^mlVnAyIy`duhzfBWRaHqO^Z9DFcwr@_#%?;a)A<=eN` z!^E9Oh~bAxz;J!1fLND1acswT(%&Vp+j+#T-`F-?zJz*j30=agYH28C!IlKm?&S-; z3oaMX2%g)EhiaIF(_oj6ld&_0xaFX2)8)#60c9PJ&ErTslywQL?ErCe7I9OiJU3fh zw;m#fqUx@)j;}AEA?tX{anyLH!7#9HKXJVsYtABuBC+!*(>fkswUfm|wf2K9f?dfV zuC=ndz4DCNLlJvm7jq<->aU*FYc<|!FboW^nsjLwEvzP84vxeVfmz2}UPCp+y9Cy_ zi}&J;QVJ7pK*Mj{!&G;b#lr YUpERzVI9`5PXGV_07*qoM6N<$fDEq{ByaZhL4 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 N002ovPDHLkV1k~P7R&$u literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/btn-info.png.meta b/assets/core/setting/textures/btn-info.png.meta new file mode 100644 index 0000000..d6afb69 --- /dev/null +++ b/assets/core/setting/textures/btn-info.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "c99f7f91-8c8d-4ebb-a5f2-1f8980aa748e", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 33, + "height": 34, + "platformSettings": {}, + "subMetas": { + "btn-info": { + "ver": "1.0.6", + "uuid": "ef38dfa2-9972-4eb6-9f04-5d8452f61381", + "importer": "sprite-frame", + "rawTextureUuid": "c99f7f91-8c8d-4ebb-a5f2-1f8980aa748e", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 33, + "height": 34, + "rawWidth": 33, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/core/setting/textures/btn-music-off.png b/assets/core/setting/textures/btn-music-off.png new file mode 100644 index 0000000000000000000000000000000000000000..6103a7629d0d95ba1357d9ae267f74b536428635 GIT binary patch literal 1500 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 P00000NkvXXu0mjfr%N2; literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/btn-music-on.png.meta b/assets/core/setting/textures/btn-music-on.png.meta new file mode 100644 index 0000000..63a5051 --- /dev/null +++ b/assets/core/setting/textures/btn-music-on.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "054796fe-406d-439f-a1dd-954872d750ae", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 22, + "height": 33, + "platformSettings": {}, + "subMetas": { + "btn-music-on": { + "ver": "1.0.6", + "uuid": "d77c6ae5-7ec9-4160-a3af-c2bd8716b88c", + "importer": "sprite-frame", + "rawTextureUuid": "054796fe-406d-439f-a1dd-954872d750ae", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 22, + "height": 33, + "rawWidth": 22, + "rawHeight": 33, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/core/setting/textures/btn-option-bg.png b/assets/core/setting/textures/btn-option-bg.png new file mode 100644 index 0000000000000000000000000000000000000000..438bd28c540a08a4604ce9a465384e57b971f8e3 GIT binary patch literal 1112 zcmV-e1gHCnP)pJPg&=ONf|yoZNEdDd z-PLuGrYdL!>B348qRApe+Ze5#e2z(8GV|U%pKrJvW)5#LOfw7df4Fb%Ip?1Hf9Kr$ zKIWNMXu}XEILa{n7`j8u7R$_Yhh?%+E|o8wzjXd``GbF3BFV4xoGxA&IqNgFsF4DM(Uo1kfr`@B-_aDJrNZ{xqiPx%c; z>V97u?|ZH0%~Tfx9y-SRj+gR{;NveAh=tTVdtmsD>b~#Swj-BEOFo?<%@c{F=%0S1 zv{U);yH#RGnmhOE_OY9*VFPE8f=V!$rluxG6ZI^bPMp0`e22Gj za?u?{7ft#i%5za`#dptMIXQt32IzaP{OgIkJK1HFVrQ3KtZFpQGq&%^nQuQQ0H5L0 z?=eMF-cM!9HR&mz)5SN{rs+{r3DYpX#WGkKpvFUktguF<$RJh20LO+VS3RcLigOrZvNuiV$e!UEw=F)oM5HKtjU1lE z;9-SKR#cj-O6G=fBhj9=J>X$1U~rk5>}}w}#jEdA(pNp1&wvFW*U4IGOJ|Wnnps3u zW(hVeUeWa38G(>mN1%(Gy>dE6*^P>d5mMz+lV_~9zDeW`nENi!bjkS1fqr$l_H5j1tVWZtBAxXdjJK-6~c)zGgh zMn8S^SUsC$`Z_+nLBvPROk-1v^Vx4a8LuB2+0kOJ5rZYB;Rm6mGsskQati)V)F8G* z)Z#VziP?J?)~M64)Cr@6%lU-A{RP+)>dt}??7 zrn#QTbSl?VNq&_~OVf7I+Tw5UGgp~pf`Y;40LOWOGmJ9N4q)gE`YV(66nL6NZt^uV ztQw$?QBLuE(hjr8ePZ=$r3l2T{QA?D;Si(z$q#&!v_%37)Tl7W0C`}HaVk7ui(L#2 z+(hVmli1aWCT&cP{XEJ+8Z7Y>x0$0t4J;6`$vrHv%TbOn#0WWjy8j><5fZS$60`is z9qzG71Qvjh4Hl?V;UFdU z;de;#}}rbnVh1!1|nIF4pKl_R(GD7lD=snNCAo9fj!K< zaq*91XBPL{+RDu}>SI${R|L&Lij!4nXMnp2PX#76kg!<-N_I!tlo=aEc8A>)5mh&j z0ppOp`G5mm`Azl}kT{uJ4=O&*^)LWp`_}1&Q*&kcWM>ow?M^ltCSVF+d2M1KQhU^Df;viC^)Vd4B38PvTM(Z3V&R zw`dD8UOC|RD}P@;f1!2}Kt7*6c;=P254}o#Eh#s}m0Y%4=#VCsGbrLpb`YM(J3ay< zJ~TQUK78Tz`AhYW?78YTuu~#HY5^id%?BY=hn#p;^n?zaB=S?linD$*Zw=9i`O@8$e*M*E{R% zE#pUVfi$^%_o60^ZXivLr*ZG3)Hpp3FF;8^VwRWM7U;<2s5gD=$USqrtsZEEQs7O- zI40Lcvrj<3{}3msEtHR`j96J&XoMer-<++%$JsNS;Q#5Y^=-0um;N2eeS1d6pMG-U zS!srTteIaS#b3NU{qrYjh`fTWSh>2`T>S3G>)!&{xi=@jc;U6lBUCr~J;-|_(EmqC zOLU9Y1y{xn?;9wM^YYQwduPwDpR%UDdVq6FRR0P{F0pkHDvET+WOJ~&i74tm)jG71 zg$Q0(kDzFz?0d-LiTmT@XJOU~2K)+mf;cDAQ%Kcr7IdLpUtaAX-w3GCXf>LEZ~v^t z*BBppcwhS#Xw(Nxqe<3b&b++?K7%rWfe@}OM*tnE1ZMw>kNKy^eI9H^X+tY|K9%H- z6kXqJQ@;_1-(2o|unJ#hLm2GU|1I@p>NX9MW*mZW7~uc_002ovPDHLk FV1hK!zh3|V literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/btn-option.png.meta b/assets/core/setting/textures/btn-option.png.meta new file mode 100644 index 0000000..65dc120 --- /dev/null +++ b/assets/core/setting/textures/btn-option.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "d06f1714-cb10-4073-8c0c-9946d70c4607", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 34, + "height": 27, + "platformSettings": {}, + "subMetas": { + "btn-option": { + "ver": "1.0.6", + "uuid": "e89828af-e9d2-43a5-846a-105096bf7a63", + "importer": "sprite-frame", + "rawTextureUuid": "d06f1714-cb10-4073-8c0c-9946d70c4607", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 34, + "height": 27, + "rawWidth": 34, + "rawHeight": 27, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/core/setting/textures/btn-retract.png b/assets/core/setting/textures/btn-retract.png new file mode 100644 index 0000000000000000000000000000000000000000..88ebf227522e80ceacf85e274f3c98ca9b9cc95d GIT binary patch literal 1096 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 literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/btn-sound-off.png.meta b/assets/core/setting/textures/btn-sound-off.png.meta new file mode 100644 index 0000000..d6b2a46 --- /dev/null +++ b/assets/core/setting/textures/btn-sound-off.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "60335042-f3f0-4504-866e-bf0404dbab61", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 37, + "height": 33, + "platformSettings": {}, + "subMetas": { + "btn-sound-off": { + "ver": "1.0.6", + "uuid": "24c22167-7281-42e5-8997-aaa650b54094", + "importer": "sprite-frame", + "rawTextureUuid": "60335042-f3f0-4504-866e-bf0404dbab61", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 37, + "height": 33, + "rawWidth": 37, + "rawHeight": 33, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/core/setting/textures/btn-sound-on.png b/assets/core/setting/textures/btn-sound-on.png new file mode 100644 index 0000000000000000000000000000000000000000..042f9401843839185d266b22a5d45b3503bca0c3 GIT binary patch literal 1969 zcmV;i2Tu5jP)Ul2eQeI^09sFJ0C#;g8Q1{)>t7}A=<=R zF*T`iVy8_Nq6xOsI4My>j7BuBkwpXq1r#^j0-CstibSQsJ)oj!2!aXzI`6T#RBcUD zJTw0}_q_Aoy}!G>d*2iJnXId+HfF|*4{`(jgWoeX)L6;0FrE8=#EQx-KsF_*v53g% zPKOxztLYoQyS*ElVxiuZU4M1%bP$iJ)06i@AzbYRWgc*II7M?j6p&G!#L#8Hl2w`C z!*Zz9L75(o^n)8iDVp6$ASPy>FK;Z#1(M*fBb0~3q26$)7hD@m(L3({e-I~KpX6hw zwgHo2uRWAUz`;m37y(~KK<&UMfN1PSj2^px;>4L{A` zUxYzfSgUW>rM?u+(mf1fDI$)FpB*K)sSx1rB>&;}4I-j_T)UnkX2V2`hlv;sQ#)d2 z9)IW5bhr=<+dN@^IP433w9faYXr>DCLR)>>q{PXWayJ(@JKOt?7m;p@;!Ik&;tIF_ zMnp)jZU5HsAwxzl&&gffQodt8U+hSwY}dzxdD^eiXk<)nt_vIqhP|P%C*+=Xx2Zj@ zj%0i58X4SHZ;un1gMiswu1LecR2M2Dv30BLfRU7@O+>`Nw}T?;#h0>S4b;cL`GHUy z1q~y3CDipYt16tVsn&PAJv>eYhxAQR>UJ}dwEEAK>4+o!{R9Ov zXhNjXajIOQax6X$u7&L!rdwD1vW40nP+$)wzOd5=4)_rrU|cLB6E3U|fWyzhj-Y$m zeqXs=r=Mp*tXb2G;qE9Miysr6sWdP$z;F-8?4dS+03Us-h)lbc;S7z#NqN1W0@qEs z&uY^g+j>q0!nPnN34mRJa8R#+6saJYerl}do}`mKNFCq3IkcO6%UMro`4D%{=cb8> z`SvQdRR}j%yDIUz@xyI5 zQ>lkdUi8;>$xuNu-qzOfl`oAOJyiX$*%NkpGse$I1*ux;0lU0t%xlf7{^4?-2ORWc z;jgV*LALwA(Euvv+9(Y#nl{n3fSM4hQtXvDDVYLf-3uzmXncC|d@TMWh zO;vNgo4R?8@i$V}$eHD?u+5_*|2R?R&4O6V=AJIbwaRF4z?H;sLBw$Go+Zy;q1ub$ zH_a80S&RSTR>4_+D&M!mQe>IB1?MN)HgMRR`Yau{*6V1@b%ibN9V2ooO$S@u)ZCNA zK2QD;W7#~&$Mgzc={P>Ei_&O{leb4QX9mL-Tc-HQWf9}Km232OIie$df{AjE`qmh} zF~FdKQU@q;r+JebcZ=O%k7vg|Qu(Pf6uNLD!?{gP_m!QgZ}XJ8v1EeH?GOh8@+Js@ zhEgmh+TnZiU%H`;#m2X-bq~hu)RFhP&5t57UwK7EG%g!gj=IL3L9kTA zI47wSF?y@?^FcQ_SHfk<9+0tv0hR=$zRTTb(KYi28IbWE45JQ zOzkQyS63@?Xp{Bb5cQYs&LUtL4>#W{}sNi)nUTSYpG)r8Zprv{mGFWBu}jUl@g;_MW?fqmukt6nbu_e)~qxCYedXN=C6&{K)N|K%Pgr{ zU{2FIOEO;VWRN!d(+4AjrllraNi*mBwH9Pdd^RA8jZO#^>K7WpW-~TUGFCvMDEq{ByaZhL4 z&>2td|C~8Dp5rwhDTe+Sgd(dE!O^1E$Mkv4My9Yt~z6; zh?`FSU+@jIa!d(Oq0T<^8zC{Ch>j z{df7et9xwj%-O~Dr;jcH9)-*Ka3TYaq`}d2IGzC=%Ci-YS>XHt-~l*a#_KDeKN_yj zy6ZOyC@2`S?)n|w4rO_53TeE{@ zYoS@bUNA;;wsCP79I(NKd}zvsW)tvdsy=!Sk)Zxg3UKv$an7VBco6oR;Lrg33_IS8 zVunr5M~EyHk$e&H>mgWqmp>p{-l&+>`zqhst~s~U2#jL;hMA~T0fQV$m~!78+hG#y ziG!nq;joQ&@Ae>AWSxkF+=QLcL;J|b7j`7V*?jmyabz?fE`JCScguC7;$qEDappld zV1~m3;hS`x$yOsGlmC~ia`B2RC>TC};=QAm-&r_rk-N56a!)ypJ~FRkV?1;ZhA$I< z36xA5-7O-T9_RsS-)x=)oi^B)1IM!|&2v!%4C^U*!9e5d_L`vx_!|qRST2c(S5Mqv zH+i9ZiwTYog0K2O_x+^C#=r3^V$t~AElM?`*mtZSwU7EL0-nB}YlAIrZ_peKEhcC; zuy~Y*!uP)(KQ~6bp2L~2r!SoCPtB5iL{!oLMbRa+ZpeqW6llxkQe`X#kppsL1f^(Y z*+{)q6$D6CuuA4S;Oi=<_r64TF6=hL!4V`!hQIprs4dO#EUiPJE(yNtOZiwYWmahp zl8Sg)3Os^yCX3GM)PZCQQJ31cd%e|u)|5<6K5cIU3Z8%1yo-}Lur~uXCy?PSHI5Rd zr-aYt*mP(sg03f+G{Ur7L_8dX8NPf;53O0yn$G?e>B^FfRD}3%TAXx|mNaO#(OepV zO5{ODA_@okt>CZ`YQy139B&l`DDDL~ihFu|z&_e-(2&g4s&owAnzuz%t~rPPnFx(3 zaL7u<)Ig_}VtAI+S1pjF*em_r)agVBfHj{ zpkC<>sk}JO@3K;K4wLouDr0X7)R^sYC3iU|BE#r0+r9&96Jd8MkM#FxmtNlL!gK56 zq0S7ANz5MZ^Sy|;Ii8VM84Zb0od91YQ*x(sB9fv!rn4mhwwYj8A~ObRyTsd5bw}5~ zVxiV#7cqCV|0yR5ObRk}Wz?JDlX%#hNJ*ieQzFvhG*9xG32OSljs%MPX-_HpW6;6Z z^iZ1s`;u6GU+_=P^oU_LT^V%=@Uangny(HgnZ66DR~$4#RUG%HxV0(o4b{&E z!_GcXAJ5jg2Bk2w9g4`%ma*N)l@DX!%Xk(zDPr2V(9P^K!>4gj5lLR4s?I(zZ-P%V z4RKuE7{QN~iG+A*XF5uDTZX2L&tkZ=J_>fkGJlMZGa`I8%rjo3E*fg%I5S3FK7e;$K6cG^AYvQHqRIaQIfiGfs z=RTd{dX{}qEi$yFED)-rpgN5G%hM2X9dV`=Y>wpInsBJmGjEj6p@;oy4s1$z3;eB3)BPRRm`%LZK#-`D1P@qE}ex zw4Z8i{J7c=KGV}Q+Xs!voL`VU)iS=R)E72IaONMr(2zx5dd%wUCA~e}<6Y{)U{fg6 zhx5`Xjbd$JPh2S~kv=_x|X{x(Tin=vA#fo-ZE$+1o1y!{-qkEBA#@L#cVdL+MXXUT=ba zPvyIvp}IF6<$h42!4o8{|O51e^U1;bn)23x_KC>+s-uI<# zktci@L}!VXe%^AznQp6K-wSy7UC;NE+Z%abz<6MIF5 z4DbvJO!o;3?iZh||HJSR=D#nPo$*D}`YhOHr0W$o+F$mvJKFM$CxZi|LqwwFCSd-P zP1SmFnHJXhaqMLc-!Bwc7hpg4&u&bmb)A)_^?hksmqFJ@sqm>8J`Ux~QZ?T#bmQD= zU#_mwv1x(}7B~6EneN;Zw5DEC{?-InPAt;EJ6?3H&~apuD@R@wPA*o_{jv+4OH_1} z3hfKke7{V~539WR;Z-erirtx(qEb%9XO(N6{6-`t`bkCUa5cMTx^ukLgLCDcoPSNj z`PVg^driX+uWIOA?HC&`Z=}q!G!=MwHk{%?h?n+ecc`QfWIV(?n z`LF%dm#11)CvT6E2D4UHx`<2^k?`O9<2}LkKeJSBUdm5@tpnUV{tW^-lu*u5$~OQ2 N002ovPDHLkV1k~P7R&$u literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/btn_gameinfo1.png.meta b/assets/core/setting/textures/btn_gameinfo1.png.meta new file mode 100644 index 0000000..840af8b --- /dev/null +++ b/assets/core/setting/textures/btn_gameinfo1.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "66bc9e3e-c132-438e-9f07-0aaa7e0f7d96", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 33, + "height": 34, + "platformSettings": {}, + "subMetas": { + "btn_gameinfo1": { + "ver": "1.0.6", + "uuid": "c80f4df0-0b61-4876-a439-bce34543f0fe", + "importer": "sprite-frame", + "rawTextureUuid": "66bc9e3e-c132-438e-9f07-0aaa7e0f7d96", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 33, + "height": 34, + "rawWidth": 33, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/core/setting/textures/btn_hamburger0.png b/assets/core/setting/textures/btn_hamburger0.png new file mode 100644 index 0000000000000000000000000000000000000000..9a11dc3df5b3bc4304436e017e34dd47c51c3a0d GIT binary patch literal 2550 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 literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/btn_hamburger0.png.meta b/assets/core/setting/textures/btn_hamburger0.png.meta new file mode 100644 index 0000000..b9f5a70 --- /dev/null +++ b/assets/core/setting/textures/btn_hamburger0.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "00d86aa9-63f6-4810-a41f-2a9c976fc20a", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 65, + "height": 65, + "platformSettings": {}, + "subMetas": { + "btn_hamburger0": { + "ver": "1.0.6", + "uuid": "071d7bec-869e-42c8-bc75-b624b84a1948", + "importer": "sprite-frame", + "rawTextureUuid": "00d86aa9-63f6-4810-a41f-2a9c976fc20a", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 65, + "height": 65, + "rawWidth": 65, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/core/setting/textures/btn_history_ingame0.png b/assets/core/setting/textures/btn_history_ingame0.png new file mode 100644 index 0000000000000000000000000000000000000000..ffc7cd2d967a5c1048f68e18473f5f38abfb707d GIT binary patch literal 1481 zcmV;)1vdJLP)*WnbVoL*seLzxe9H~ z)J;>?+EmgE0;XbGI-}GmHGlHo`~&|8@Mo9`sVSLrqRt7#WC2PlNsw^8fS3EW=X`v3 z#1!t8I@`N*&v(vw-{*bb=e*}!z{fUdkoBear-n}Za^VXp-z~FkH{^?iu1ooy^Y}kn z)R?{_^3O${blo2;ZV4B+^pR$lP2A1BRIkL@Q<^G6q##GT68GLSasP?oXRSe@hmP9! zyCp&yYbY^EL*aAMP#p3|X)L#i>wb4>b_PpPp1E|&>!#^XY<%LxuyKxtakccep$Ou< zqABAv^6>9a<*^|gH&z6zdFQq63XIDUDlVs4GQY;p0D`?XY%=+o6XWf%ZkZqts{`c0 zMJS~-LZ!}YUFElor{&}ti|g<=LA8{t8A0m1GTO3+fC<(uJ>=|GlywWhK(7Fp{VkRY zY5i*4qABC_j3F&Q>?fbS`_zp=-TjvM1JP!nFH_`i#`9F(H^ej{c2eN_{DWEz*OL#< zOI;Lrf+*gHChqYL1Q4FP2^Az9qp&NmZJ2g5R|mmJk{_-*NZe>- z`NRj!8mP7Xo|F(7PmYvshgbqky&kteJQy*~%X%6goY%oP@*r&;^0~#wMkc$(E@gWl z{=mrg*1j_oYnyIC2!xSfO6QNoDc`L=0zlyw1;F0X`txgXujvlNaSp=1{QFKuAzlH9 z@ESnOC@gENfJy@+;k*WkdJ!u+2_RgqZ}1KPy>%)N!Lyq!Nt39UMIkphBp2@PaqyA)W$Worw$#!!}M*w)!Ij=(qoE6R^4v1SI z`(x2)lwFo^!^U4nbpU&2qe>~`E5>;_T{gwWGI8sh7I z&_VE;C0STB+9P9oZPhZ{3Z|CEOLw*qJP#7{GH!Yn*)&A;w_v$3rpF9F(@?Utg)}*k z9dmGcU~f}|H-=vuZXI@P8;-N?^VXvt<^4Ixrb%8@&iP|;ilM694JqEJZzhPUG|28G zoS6BR-)tUTBZurcPMi@GcVsnAaxeK*vc8q^GmzsSLo^FIF85}Ci)H@XI6@^%2`?N1 zAs~+Hj_48M<&w7&#RXe%lYF6vWI9t?+#*~@J=wFM-jwjAO}3j;$OS53C=DPK8o9Fr zQj@0l9FxRcLs9#3ASCzaZ=l|DkR7(iMJzq6Qe9St+&qkAIT z>!&!{X?*iDEm?C>OHZq|=|&g<_8i~%7LvOFk~#smS>-x`oG;G6@n#Y46|00000NkvXXu0mjfMGmxR literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/btn_history_ingame0.png.meta b/assets/core/setting/textures/btn_history_ingame0.png.meta new file mode 100644 index 0000000..bd0aa10 --- /dev/null +++ b/assets/core/setting/textures/btn_history_ingame0.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "2f555edd-5fa2-432e-96e3-42aa0056e5bb", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 32, + "height": 31, + "platformSettings": {}, + "subMetas": { + "btn_history_ingame0": { + "ver": "1.0.6", + "uuid": "c1dd2d42-9a71-446e-854e-541108e3c84b", + "importer": "sprite-frame", + "rawTextureUuid": "2f555edd-5fa2-432e-96e3-42aa0056e5bb", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 32, + "height": 31, + "rawWidth": 32, + "rawHeight": 31, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/core/setting/textures/btn_music4.png b/assets/core/setting/textures/btn_music4.png new file mode 100644 index 0000000000000000000000000000000000000000..31a15711cd79a2498c5cb5a8fea026668c864df1 GIT binary patch literal 1097 zcmV-P1h)H$P)_wnO^<2a7vhhBmp3=mA<5M^M3e>9t6 z#ShEc!nL)clGZXb5e!%6KW%Y{j1$CMGAx!LK@8$YKbB^?ITAs{qvJ=O*|HxK5M}ag zhy8#ym7{xauf0F}e7<{p-~0X$v8$YeGBVR^3iI=u4Y7v3BH|_vDTVTdiGf_8loM4O z5Rnwez#`8LHAetRoGlNx!7n-r&K_u90h6g*|27?!xK=w3Zdw7C6XE7F7`JYk5D|@I z;6?)suYrpX!tJ+Mw>GoIF>pg13_k=X4Pc3d@psvpxAU}!Ect(MeJog#;q)r_dO2JO z1K#1_;eDg7u0a{|hwGL@eTqkt!T0B2Qi39Xiloj1-fJ4R6P8cK<)P6Df{7?NccUGj-o&tyzZ|9{jogV z6vHcFAfBT+x^esA>TtN0K*z2{HaP9?6GO054QHak9LJ6nw+Z{<55wT9fsR7`ELcRg z&=CbKAw;^%DZAlIheN>{OZ(1+vtVx@k6cbHr8Zq@+qeI#=&uTakr>)`%!boabw~R4 z_@fu;v=bFkh$6eMG8in&`25WUv*5)#rpphD%Fvi)ySC?V z>^yStsjJOL)5jaDGe%2|PxohSe#9isT4U#K&274ZXnIXMH`rYlkX2loJ~-C12?jU7 zIRl&wgHsXEw+1X5`L5v!&YJ?KX!WJ>)w#f)y2rcPvfzh!CaRpVzAsqI)L2d0J1KSN z=MsUY1&r1P!tnqawrK7LyXcKY3AZ^Dg7rNG)(T&)RQhtILWi|NH{GvP+T#1qjri1` zhF84q4eRxqoYCVUj8?cYZ1Q2GT+4__%SgHRjJ5XPwGFP*-5(C~ciwjWkQcvHdNZ_N z!*H2qy5B1t)6(#g$_8iN6?PVRtUXT&_1>6`Y6kb+J(dzRL;Jm;UPH;FE;cynp6@Q& zUpmJQc)-VAn2ny8i#-{bj%vD_i&fJZDpPZ-R*j`lNxY{F%N)w{;ZW%w+^d9Y5B@l$ z!fH}+x%^Iks!;LU2P$qwR|iPz>Hukv^^!WBh*3n=&sF&oawUZI+QASL P00000NkvXXu0mjfr%N2; literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/btn_music4.png.meta b/assets/core/setting/textures/btn_music4.png.meta new file mode 100644 index 0000000..73b8b00 --- /dev/null +++ b/assets/core/setting/textures/btn_music4.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "14036bf6-ddb0-4cc5-a4ce-d3f412fa0e34", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 22, + "height": 33, + "platformSettings": {}, + "subMetas": { + "btn_music4": { + "ver": "1.0.6", + "uuid": "4be2eccd-e85d-4d75-9231-bed42e171358", + "importer": "sprite-frame", + "rawTextureUuid": "14036bf6-ddb0-4cc5-a4ce-d3f412fa0e34", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 22, + "height": 33, + "rawWidth": 22, + "rawHeight": 33, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/core/setting/textures/btn_musicoff5.png b/assets/core/setting/textures/btn_musicoff5.png new file mode 100644 index 0000000000000000000000000000000000000000..6103a7629d0d95ba1357d9ae267f74b536428635 GIT binary patch literal 1500 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 literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/btn_soundeffectoff2.png.meta b/assets/core/setting/textures/btn_soundeffectoff2.png.meta new file mode 100644 index 0000000..b62b57e --- /dev/null +++ b/assets/core/setting/textures/btn_soundeffectoff2.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "1a6e1c0d-0739-49ac-9756-bfd35b9ba95c", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 37, + "height": 33, + "platformSettings": {}, + "subMetas": { + "btn_soundeffectoff2": { + "ver": "1.0.6", + "uuid": "9f4d4bd6-7085-43d0-be8f-e0789be2c24c", + "importer": "sprite-frame", + "rawTextureUuid": "1a6e1c0d-0739-49ac-9756-bfd35b9ba95c", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 37, + "height": 33, + "rawWidth": 37, + "rawHeight": 33, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/core/setting/textures/shadow.png b/assets/core/setting/textures/shadow.png new file mode 100644 index 0000000000000000000000000000000000000000..85097189036599651363b083ae9037b438d6ea37 GIT binary patch literal 3055 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 literal 0 HcmV?d00001 diff --git a/assets/core/setting/textures/shadow.png.meta b/assets/core/setting/textures/shadow.png.meta new file mode 100644 index 0000000..aeb40f3 --- /dev/null +++ b/assets/core/setting/textures/shadow.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "9f04d933-4357-47e4-8854-91681ec7dd2c", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 136, + "height": 72, + "platformSettings": {}, + "subMetas": { + "shadow": { + "ver": "1.0.6", + "uuid": "297b86d7-e7d6-44fd-8782-e3dc3e73004f", + "importer": "sprite-frame", + "rawTextureUuid": "9f04d933-4357-47e4-8854-91681ec7dd2c", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 136, + "height": 72, + "rawWidth": 136, + "rawHeight": 72, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file