├── assets ├── version.json ├── FirstScene │ ├── res │ │ ├── auto-atlas.pac │ │ ├── image_bar.png │ │ ├── image_bar_bg.png │ │ ├── image_health.png │ │ ├── image_age_tip.png │ │ ├── image_health_title.png │ │ └── auto-atlas.pac.meta │ ├── loading_bg.jpg │ └── res.meta ├── resources │ ├── ui │ │ ├── Game.bin │ │ ├── Socket.bin │ │ ├── Window.bin │ │ ├── Condition.bin │ │ ├── HotUpdate.bin │ │ ├── MiniGame.bin │ │ ├── manual │ │ │ ├── Home.bin │ │ │ ├── Basics.bin │ │ │ ├── Basics_atlas0.png │ │ │ ├── Basics.bin.meta │ │ │ ├── Home.bin.meta │ │ │ └── Basics_atlas0.png.meta │ │ ├── Window_atlas0.png │ │ ├── Condition_atlas0.png │ │ ├── manual.meta │ │ ├── Game.bin.meta │ │ ├── Home.bin.meta │ │ ├── Condition.bin.meta │ │ ├── HotUpdate.bin.meta │ │ ├── MiniGame.bin.meta │ │ ├── Socket.bin.meta │ │ ├── Window.bin.meta │ │ ├── Window_atlas0.png.meta │ │ ├── Condition_atlas0.png.meta │ │ └── Home_atlas0.png.meta │ ├── icon │ │ ├── 6102.png │ │ ├── 6103.png │ │ ├── 6104.png │ │ ├── icon.png │ │ ├── 6102.png.meta │ │ └── 6103.png.meta │ ├── texture │ │ └── 6101.png │ ├── config │ │ ├── buffer │ │ │ ├── list.bin │ │ │ ├── basic.bin │ │ │ ├── DictSheet.bin │ │ │ ├── dict_list.bin │ │ │ ├── dict_list_dict.bin │ │ │ ├── dict.bin │ │ │ ├── list_dict.bin │ │ │ ├── dict.bin.meta │ │ │ ├── list.bin.meta │ │ │ ├── DictSheet.bin.meta │ │ │ ├── basic.bin.meta │ │ │ ├── dict_list.bin.meta │ │ │ ├── list_dict.bin.meta │ │ │ └── dict_list_dict.bin.meta │ │ └── buffer.meta │ ├── anim.meta │ ├── config.meta │ ├── icon.meta │ ├── prefab.meta │ ├── ui.meta │ ├── texture.meta │ ├── anim │ │ └── rotate.anim.meta │ └── prefab │ │ └── ball.prefab.meta ├── bundle_res │ ├── pet │ │ ├── pet1.png │ │ ├── pet2.png │ │ ├── pet3.png │ │ └── pet1.png.meta │ └── pet.meta ├── libs │ ├── .gitignore │ ├── protobuf.min.js.map.meta │ └── protobuf.min.js.meta ├── libs.meta ├── scene.meta ├── script.meta ├── FirstScene.meta ├── script │ ├── Data.meta │ ├── Net.meta │ ├── UI.meta │ ├── Helper.meta │ ├── Math.ts.meta │ ├── Net │ │ ├── task.meta │ │ ├── NetHelper.ts.meta │ │ ├── header.ts.meta │ │ ├── NetTaskBase.ts.meta │ │ ├── task │ │ │ ├── NetAuth.ts.meta │ │ │ └── NetAuth.ts │ │ ├── header.ts │ │ └── NetHelper.ts │ ├── Socket.meta │ ├── UI │ │ ├── Basics.meta │ │ ├── Game.meta │ │ ├── Socket.meta │ │ ├── Window.meta │ │ ├── Components.meta │ │ ├── Condition.meta │ │ ├── HotUpdate.meta │ │ ├── MiniGame.meta │ │ ├── Basics │ │ │ ├── Common.meta │ │ │ ├── Header.meta │ │ │ ├── Common │ │ │ │ ├── AlertWindow.ts.meta │ │ │ │ ├── LoadUIWindow.ts.meta │ │ │ │ ├── ToastWindow.ts.meta │ │ │ │ └── LoadUIWindow.ts │ │ │ └── Header │ │ │ │ ├── WindowHeader.ts.meta │ │ │ │ ├── WindowHeader2.ts.meta │ │ │ │ ├── WindowHeader.ts │ │ │ │ └── WindowHeader2.ts │ │ ├── HomeWindow.ts.meta │ │ ├── PopWindow.ts.meta │ │ ├── CloseAllWindow.ts.meta │ │ ├── CloseOneWindow.ts.meta │ │ ├── ConditionWindow.ts.meta │ │ ├── HideAllWindow.ts.meta │ │ ├── HideOneWindow.ts.meta │ │ ├── PopWindowHeader1.ts.meta │ │ ├── PopWindowHeader2.ts.meta │ │ ├── SocketTestWindow.ts.meta │ │ ├── Window │ │ │ ├── Components.meta │ │ │ ├── PopWindow.ts.meta │ │ │ ├── CloseAllWindow.ts.meta │ │ │ ├── CloseOneWindow.ts.meta │ │ │ ├── HideAllWindow.ts.meta │ │ │ ├── HideOneWindow.ts.meta │ │ │ ├── UIBaseWindow.ts.meta │ │ │ ├── PopWindowHeader1.ts.meta │ │ │ ├── PopWindowHeader2.ts.meta │ │ │ ├── Components │ │ │ │ ├── CustomComponents.ts.meta │ │ │ │ └── CustomComponents.ts │ │ │ ├── PopWindow.ts │ │ │ ├── PopWindowHeader1.ts │ │ │ ├── PopWindowHeader2.ts │ │ │ ├── HideAllWindow.ts │ │ │ ├── HideOneWindow.ts │ │ │ ├── CloseAllWindow.ts │ │ │ ├── CloseOneWindow.ts │ │ │ └── UIBaseWindow.ts │ │ ├── Condition │ │ │ └── ConditionWindow.ts.meta │ │ ├── HotUpdate │ │ │ └── HotUpdateWindow.ts.meta │ │ ├── MiniGame │ │ │ └── MiniGameWindow.ts.meta │ │ └── Socket │ │ │ └── SocketTestWindow.ts.meta │ ├── condition.meta │ ├── kunpolib.meta │ ├── Binary.ts.meta │ ├── Debug.ts.meta │ ├── GameEntry.ts.meta │ ├── Socket │ │ ├── proto.meta │ │ ├── ProtoInfos.ts.meta │ │ ├── proto │ │ │ ├── proto.js.meta │ │ │ ├── proto.d.ts.meta │ │ │ └── proto.d.ts │ │ └── ProtoInfos.ts │ ├── header.ts.meta │ ├── Data │ │ ├── DataHelper.ts.meta │ │ └── DataHelper.ts │ ├── Helper │ │ ├── NativeCallJS.ts.meta │ │ ├── SDKHelper.ts.meta │ │ ├── NativeCallJS.ts │ │ └── SDKHelper.ts │ ├── UIPackageRegister.ts.meta │ ├── condition │ │ ├── Condition1.ts.meta │ │ ├── Condition2.ts.meta │ │ ├── Condition3.ts.meta │ │ ├── Condition4.ts.meta │ │ ├── ConditionType.ts.meta │ │ ├── ConditionType.ts │ │ ├── Condition1.ts │ │ ├── Condition2.ts │ │ ├── Condition3.ts │ │ └── Condition4.ts │ ├── header.ts │ ├── UIPackageRegister.ts │ └── Math.ts ├── uiconfig.meta ├── version.json.meta ├── scene │ ├── GameEntry.scene.meta │ └── NativeGameEntry.scene.meta ├── uiconfig │ └── ui_config.json.meta ├── project.manifest.meta ├── version.manifest.meta ├── bundle_res.meta ├── version.manifest └── resources.meta ├── extensions-config ├── .gitignore └── fgui │ ├── Home │ ├── CustomComponents.json │ ├── PopWindow.json │ ├── CloseAllWindow.json │ ├── CloseOneWindow.json │ ├── HideAllWindow.json │ ├── HideOneWindow.json │ ├── PopWindowHeader1.json │ ├── PopWindowHeader2.json │ ├── SocketTestWindow.json │ └── ConditionWindow.json │ ├── Basics │ ├── WindowHeader.json │ ├── WindowHeader2.json │ ├── LoadUIWindow.json │ ├── ToastWindow.json │ └── AlertWindow.json │ ├── Window │ ├── CustomComponents.json │ ├── PopWindow.json │ ├── HideAllWindow.json │ ├── HideOneWindow.json │ ├── CloseAllWindow.json │ ├── CloseOneWindow.json │ ├── PopWindowHeader1.json │ ├── PopWindowHeader2.json │ └── UIBaseWindow.json │ ├── Game │ └── GameWindow.json │ ├── MiniGame │ └── MiniGameWindow.json │ ├── HotUpdate │ └── HotUpdateWindow.json │ ├── Socket │ └── SocketTestWindow.json │ └── Condition │ └── ConditionWindow.json ├── FguiCreator3.8 ├── assets │ ├── Basics │ │ ├── btns │ │ │ ├── Font1.fnt │ │ │ ├── MovieClip1.jta │ │ │ ├── image_button1.png │ │ │ ├── image_button_close.png │ │ │ ├── Label1.xml │ │ │ ├── btn_close.xml │ │ │ ├── ProgressBar1.xml │ │ │ ├── ComboBox1_popup.xml │ │ │ ├── Slider1.xml │ │ │ ├── button1.xml │ │ │ ├── ComboBox1_item.xml │ │ │ ├── Slider1_grip.xml │ │ │ └── ComboBox1.xml │ │ ├── empty.xml │ │ ├── image │ │ │ └── image_black.png │ │ ├── load │ │ │ └── image_net_wait.png │ │ ├── window │ │ │ ├── toast │ │ │ │ ├── image_toastbg.png │ │ │ │ └── toast.xml │ │ │ ├── ToastWindow.xml │ │ │ └── AlertWindow.xml │ │ ├── header │ │ │ ├── WindowHeader.xml │ │ │ └── WindowHeader2.xml │ │ └── package.xml │ ├── Window │ │ ├── image │ │ │ └── Icon-60@2x.png │ │ ├── CustomComponents.xml │ │ ├── PopWindow.xml │ │ ├── PopWindowHeader1.xml │ │ ├── PopWindowHeader2.xml │ │ ├── HideAllWindow.xml │ │ ├── HideOneWindow.xml │ │ ├── CloseAllWindow.xml │ │ ├── CloseOneWindow.xml │ │ ├── package.xml │ │ └── UIBaseWindow.xml │ ├── Condition │ │ ├── image │ │ │ ├── image_reddot_bg.png │ │ │ └── item_reddot.xml │ │ ├── package.xml │ │ └── ConditionWindow.xml │ ├── HotUpdate │ │ ├── package.xml │ │ └── HotUpdateWindow.xml │ ├── MiniGame │ │ └── package.xml │ ├── Socket │ │ └── package.xml │ └── Home │ │ ├── package.xml │ │ └── HomeWindow.xml ├── settings │ ├── CustomProperties.json │ ├── i18n.json │ ├── Adaptation.json │ ├── Common.json │ └── Publish.json ├── .gitignore └── FguiCreator3.8.fairy ├── native └── engine │ ├── common │ ├── .gitignore │ ├── cocos-version.json │ ├── localCfg.cmake │ ├── Classes │ │ ├── JNIAndroid │ │ │ ├── JniTools.h │ │ │ └── JniTools.cpp │ │ ├── SDKHelper.h │ │ ├── SDKHelper.cpp │ │ ├── Game.h │ │ └── bindings │ │ │ └── auto │ │ │ └── jsb_SDKHelper_auto.h │ └── xr.cmake │ ├── ios │ ├── Post-service.cmake │ ├── Pre-service.cmake │ ├── Images.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ ├── 114.png │ │ │ ├── 120.png │ │ │ ├── 180.png │ │ │ ├── 29.png │ │ │ ├── 40.png │ │ │ ├── 57.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ ├── LaunchScreenBackground.png │ ├── LaunchScreenBackgroundLandscape.png │ ├── LaunchScreenBackgroundPortrait.png │ ├── zh-Hans.lproj │ │ └── Localizable.strings │ ├── Base.lproj │ │ └── Localizable.strings │ ├── Prefix.pch │ ├── CMakeLists.txt │ ├── Info.plist │ ├── ViewController.h │ ├── AppDelegate.h │ └── main.mm │ ├── android │ ├── Post-service.cmake │ ├── Pre-service.cmake │ ├── res │ │ ├── values │ │ │ └── strings.xml │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ └── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ ├── .gitignore │ ├── build-cfg.json │ ├── CMakeLists.txt │ ├── build.gradle │ ├── app │ │ ├── AndroidManifest.xml │ │ ├── src │ │ │ └── com │ │ │ │ └── kunpo │ │ │ │ └── KunpoHelper.java │ │ └── proguard-rules.pro │ └── instantapp │ │ ├── AndroidManifest.xml │ │ └── proguard-rules.pro │ └── harmonyos-next │ ├── entry │ ├── src │ │ └── main │ │ │ ├── resources │ │ │ ├── .gitignore │ │ │ └── base │ │ │ │ ├── profile │ │ │ │ └── main_pages.json │ │ │ │ ├── media │ │ │ │ └── icon.png │ │ │ │ └── element │ │ │ │ ├── color.json │ │ │ │ └── string.json │ │ │ ├── cpp │ │ │ └── types │ │ │ │ └── libcocos │ │ │ │ ├── oh-package.json5 │ │ │ │ └── index.d.ts │ │ │ ├── module.json5 │ │ │ └── ets │ │ │ └── common │ │ │ └── Constants.ts │ ├── .gitignore │ ├── hvigorfile.ts │ ├── oh-package.json5 │ └── build-profile.json5 │ ├── AppScope │ ├── resources │ │ └── base │ │ │ ├── element │ │ │ └── string.json │ │ │ └── media │ │ │ └── app_icon.png │ └── app.json5 │ ├── .gitignore │ ├── hvigorfile.ts │ ├── oh-package.json5 │ ├── CMakeLists.txt │ ├── build-profile.json5 │ └── hvigor │ └── hvigor-config.json5 ├── settings └── v2 │ └── packages │ ├── device.json │ ├── program.json │ ├── scene.json │ ├── project.json │ ├── cocos-service.json │ └── information.json ├── excel └── test.xlsx ├── README.md ├── proto ├── test.proto └── CommonMessage.proto ├── tsconfig.json ├── lib.d.ts └── SDKHelper.d.ts ├── package.json ├── .gitignore └── tools └── swig-config └── swig-config.js /assets/version.json: -------------------------------------------------------------------------------- 1 | {"version":"0.0.1"} -------------------------------------------------------------------------------- /extensions-config/.gitignore: -------------------------------------------------------------------------------- 1 | local/ -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Basics/btns/Font1.fnt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /FguiCreator3.8/settings/CustomProperties.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /native/engine/common/.gitignore: -------------------------------------------------------------------------------- 1 | localCfg.cmake -------------------------------------------------------------------------------- /FguiCreator3.8/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .objs/ 3 | -------------------------------------------------------------------------------- /FguiCreator3.8/settings/i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "langFiles": [] 3 | } -------------------------------------------------------------------------------- /native/engine/ios/Post-service.cmake: -------------------------------------------------------------------------------- 1 | # Supported for Cocos Service! -------------------------------------------------------------------------------- /native/engine/ios/Pre-service.cmake: -------------------------------------------------------------------------------- 1 | # Supported for Cocos Service! -------------------------------------------------------------------------------- /native/engine/android/Post-service.cmake: -------------------------------------------------------------------------------- 1 | # Supported for Cocos Service! -------------------------------------------------------------------------------- /native/engine/android/Pre-service.cmake: -------------------------------------------------------------------------------- 1 | # Supported for Cocos Service! -------------------------------------------------------------------------------- /settings/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Basics/btns/MovieClip1.jta: -------------------------------------------------------------------------------- 1 | yytouf -------------------------------------------------------------------------------- /native/engine/android/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /settings/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.4" 3 | } 4 | -------------------------------------------------------------------------------- /native/engine/common/cocos-version.json: -------------------------------------------------------------------------------- 1 | {"version":"3.8.6","skipCheck":false} 2 | -------------------------------------------------------------------------------- /assets/FirstScene/res/auto-atlas.pac: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteAtlas" 3 | } 4 | -------------------------------------------------------------------------------- /excel/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/excel/test.xlsx -------------------------------------------------------------------------------- /native/engine/harmonyos-next/entry/src/main/resources/.gitignore: -------------------------------------------------------------------------------- 1 | /rawfile/ 2 | .DS_Store -------------------------------------------------------------------------------- /native/engine/harmonyos-next/entry/.gitignore: -------------------------------------------------------------------------------- 1 | /oh_modules 2 | /.preview 3 | /build 4 | /.cxx -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Basics/empty.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/resources/ui/Game.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/Game.bin -------------------------------------------------------------------------------- /assets/bundle_res/pet/pet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/bundle_res/pet/pet1.png -------------------------------------------------------------------------------- /assets/bundle_res/pet/pet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/bundle_res/pet/pet2.png -------------------------------------------------------------------------------- /assets/bundle_res/pet/pet3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/bundle_res/pet/pet3.png -------------------------------------------------------------------------------- /assets/resources/icon/6102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/icon/6102.png -------------------------------------------------------------------------------- /assets/resources/icon/6103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/icon/6103.png -------------------------------------------------------------------------------- /assets/resources/icon/6104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/icon/6104.png -------------------------------------------------------------------------------- /assets/resources/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/icon/icon.png -------------------------------------------------------------------------------- /assets/resources/ui/Socket.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/Socket.bin -------------------------------------------------------------------------------- /assets/resources/ui/Window.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/Window.bin -------------------------------------------------------------------------------- /assets/FirstScene/loading_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/FirstScene/loading_bg.jpg -------------------------------------------------------------------------------- /assets/resources/texture/6101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/texture/6101.png -------------------------------------------------------------------------------- /assets/resources/ui/Condition.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/Condition.bin -------------------------------------------------------------------------------- /assets/resources/ui/HotUpdate.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/HotUpdate.bin -------------------------------------------------------------------------------- /assets/resources/ui/MiniGame.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/MiniGame.bin -------------------------------------------------------------------------------- /assets/FirstScene/res/image_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/FirstScene/res/image_bar.png -------------------------------------------------------------------------------- /assets/resources/ui/manual/Home.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/manual/Home.bin -------------------------------------------------------------------------------- /assets/FirstScene/res/image_bar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/FirstScene/res/image_bar_bg.png -------------------------------------------------------------------------------- /assets/FirstScene/res/image_health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/FirstScene/res/image_health.png -------------------------------------------------------------------------------- /assets/resources/config/buffer/list.bin: -------------------------------------------------------------------------------- 1 | nameAlicescores@ @nameBobscores -------------------------------------------------------------------------------- /assets/resources/ui/Window_atlas0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/Window_atlas0.png -------------------------------------------------------------------------------- /assets/resources/ui/manual/Basics.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/manual/Basics.bin -------------------------------------------------------------------------------- /assets/FirstScene/res/image_age_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/FirstScene/res/image_age_tip.png -------------------------------------------------------------------------------- /assets/libs/.gitignore: -------------------------------------------------------------------------------- 1 | kunpo-inspector.min.mjs 2 | kunpo-inspector.min.mjs.meta 3 | 4 | kunpo-inspector.mjs 5 | kunpo-inspector.mjs.meta -------------------------------------------------------------------------------- /assets/resources/config/buffer/basic.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/config/buffer/basic.bin -------------------------------------------------------------------------------- /assets/resources/ui/Condition_atlas0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/Condition_atlas0.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /settings/v2/packages/scene.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.3", 3 | "current-scene": "bef93422-3e63-4c0f-a5cf-d926e7360673" 4 | } 5 | -------------------------------------------------------------------------------- /native/engine/harmonyos-next/entry/src/main/resources/base/profile/main_pages.json: -------------------------------------------------------------------------------- 1 | { 2 | "src": [ 3 | "pages/index" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /assets/FirstScene/res/image_health_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/FirstScene/res/image_health_title.png -------------------------------------------------------------------------------- /assets/resources/config/buffer/DictSheet.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/config/buffer/DictSheet.bin -------------------------------------------------------------------------------- /assets/resources/ui/manual/Basics_atlas0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/ui/manual/Basics_atlas0.png -------------------------------------------------------------------------------- /native/engine/ios/LaunchScreenBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/LaunchScreenBackground.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 项目说明 2 | 3 | clone项目后,到项目根目录,执行以下命令,安装项目依赖库 4 | ```bash 5 | npm i 6 | ``` 7 | 8 | 重新用creator打开项目 9 | 10 | 本项目使用的creator版本为3.8.6 -------------------------------------------------------------------------------- /assets/resources/config/buffer/dict_list.bin: -------------------------------------------------------------------------------- 1 | nameAliceattrenonetwocnnameBobattr -------------------------------------------------------------------------------- /native/engine/android/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /native/engine/common/localCfg.cmake: -------------------------------------------------------------------------------- 1 | ## Add or overwrite options from cfg.cmake. 2 | ## This file is ignored from git. 3 | # set(NODE_EXECUTABLE /opt/...) -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Basics/btns/image_button1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/FguiCreator3.8/assets/Basics/btns/image_button1.png -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Basics/image/image_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/FguiCreator3.8/assets/Basics/image/image_black.png -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Window/image/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/FguiCreator3.8/assets/Window/image/Icon-60@2x.png -------------------------------------------------------------------------------- /assets/resources/config/buffer/dict_list_dict.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/assets/resources/config/buffer/dict_list_dict.bin -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Basics/load/image_net_wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/FguiCreator3.8/assets/Basics/load/image_net_wait.png -------------------------------------------------------------------------------- /native/engine/android/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/android/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /native/engine/android/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/android/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /native/engine/ios/LaunchScreenBackgroundLandscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/LaunchScreenBackgroundLandscape.png -------------------------------------------------------------------------------- /native/engine/ios/LaunchScreenBackgroundPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/LaunchScreenBackgroundPortrait.png -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Basics/btns/image_button_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/FguiCreator3.8/assets/Basics/btns/image_button_close.png -------------------------------------------------------------------------------- /native/engine/android/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/android/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native/engine/android/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/android/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /native/engine/android/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/android/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /FguiCreator3.8/FguiCreator3.8.fairy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Condition/image/image_reddot_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/FguiCreator3.8/assets/Condition/image/image_reddot_bg.png -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Basics/window/toast/image_toastbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/FguiCreator3.8/assets/Basics/window/toast/image_toastbg.png -------------------------------------------------------------------------------- /assets/resources/config/buffer/dict.bin: -------------------------------------------------------------------------------- 1 | nameAlicepositionx$@y4@nameBobpositionx>@yD@ -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /native/engine/ios/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/ios/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /native/engine/harmonyos-next/AppScope/resources/base/element/string.json: -------------------------------------------------------------------------------- 1 | { 2 | "string": [ 3 | { 4 | "name": "app_name", 5 | "value": "kunpocreator" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /native/engine/harmonyos-next/AppScope/resources/base/media/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/harmonyos-next/AppScope/resources/base/media/app_icon.png -------------------------------------------------------------------------------- /native/engine/harmonyos-next/entry/src/main/resources/base/media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gongxh0901/KunpoDemo/HEAD/native/engine/harmonyos-next/entry/src/main/resources/base/media/icon.png -------------------------------------------------------------------------------- /native/engine/ios/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | Localizable.strings 3 | */ 4 | 5 | "done" = "完成"; 6 | "next" = "下一个"; 7 | "search" = "搜索"; 8 | "go" = "前往"; 9 | "send" = "发送"; 10 | -------------------------------------------------------------------------------- /native/engine/ios/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | Localizable.strings 3 | */ 4 | 5 | "done" = "Done"; 6 | "next" = "Next"; 7 | "search" = "Search"; 8 | "go" = "Go"; 9 | "send" = "Send"; 10 | -------------------------------------------------------------------------------- /native/engine/android/build-cfg.json: -------------------------------------------------------------------------------- 1 | { 2 | "ndk_module_path" :[ 3 | "${COCOS_ROOT}", 4 | "${COCOS_ROOT}/cocos", 5 | "${COCOS_ROOT}/external" 6 | ], 7 | "copy_resources": [] 8 | } 9 | -------------------------------------------------------------------------------- /native/engine/harmonyos-next/entry/hvigorfile.ts: -------------------------------------------------------------------------------- 1 | // Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. 2 | export { hapTasks } from '@ohos/hvigor-ohos-plugin'; 3 | -------------------------------------------------------------------------------- /assets/libs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "029c5707-dcdd-4e4a-aece-264a51587b84", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "6f3166a3-36ba-4512-bae8-889c2a7d7d98", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "448b0525-daf3-4ad4-be4a-04a7e181f028", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/FirstScene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "2768ad39-fa5d-43f6-a2f8-723dde4d0a32", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Data.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "204786f0-6faa-434f-bb4a-365be227bf25", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Net.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "fcf6e6db-b041-4ade-a17c-c2ac3d72aed0", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ce0bb648-7b41-4640-be24-62109ab2ad59", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/uiconfig.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "c0c7df86-d7a3-450e-b5c6-b93d9701ab92", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /native/engine/harmonyos-next/entry/src/main/cpp/types/libcocos/oh-package.json5: -------------------------------------------------------------------------------- 1 | { 2 | "name": "libcocos.so", 3 | "types": "./index.d.ts", 4 | "version": "1.0.0", 5 | "description": "Please describe the basic information." 6 | } -------------------------------------------------------------------------------- /assets/FirstScene/res.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "7dea02d9-d93b-4d10-aa8a-311383a60a66", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/bundle_res/pet.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "8603cf96-ad37-4569-8219-e8a3bf3df0fe", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/resources/anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b1a64f1f-5f8a-44b6-b8ef-b1383f52b075", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/resources/config.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1ea023b5-0ab6-4613-b157-3098b11c379b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/resources/icon.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a5a2dda9-38ca-49d8-b992-aca84bd1cd4a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/resources/prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "06de19c7-7f67-4a81-8f51-ba6a5fe6ea28", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/resources/ui.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "147ab882-97f7-401f-b394-f07060d515e1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Helper.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "62ab5824-ce9f-4472-98ad-23bd415ec454", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Math.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "a336ce23-5d73-4280-b2e9-084389a3877e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Net/task.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "35d378d9-a2a5-407b-afec-9c7e55e408cf", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Socket.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "4d07e39e-8369-4331-890e-80d2472a6b52", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Basics.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "eae449a2-8b5c-42ff-8917-888937877f85", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Game.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d0871aff-1fb9-4f5b-96d6-dc008b804d82", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Socket.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "dd0d6cdf-59a4-446e-840b-ddd9c17db824", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Window.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "151a2b6f-f082-4e0f-bf54-718c31f777af", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/condition.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "68249aa2-e13d-4d56-b368-3e66145a80c6", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/kunpolib.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "20f6ade1-f37f-4b59-9945-6431970a76f1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/resources/config/buffer/list_dict.bin: -------------------------------------------------------------------------------- 1 | nameAliceattsenonech一entwoch二nameBobattsenthreech三enfourch四 -------------------------------------------------------------------------------- /assets/resources/texture.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d81b037f-9f46-4923-90e3-f08515156ace", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/resources/ui/manual.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "786712f2-5631-4265-bf7b-690f4763a3aa", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Binary.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "24de22b8-8818-44a6-be2a-6aaa539447b0", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Debug.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "cb6cfaf4-abaa-446a-bdba-a6b6f32cd810", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/GameEntry.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "e5804a9e-c17f-4df6-8a74-778687e2bec1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Socket/proto.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "6961d096-69d0-4c14-9fd7-fa98afc5357e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Components.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "3896f27e-b6e5-4757-a872-8a1b925a24f3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Condition.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "aa136c25-aeef-4b18-9051-246cf5cd1176", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/HotUpdate.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d1a31574-d301-493b-9a96-b3bfcba60ba9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/MiniGame.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "fc664f7f-0b4b-406b-8240-8c6b974b3c38", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/header.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "5a04ea14-2275-42d1-87e6-157402a30a33", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /native/engine/harmonyos-next/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /local.properties 3 | /oh_modules 4 | /.idea 5 | **/build 6 | /.hvigor 7 | log.txt 8 | oh-package-lock.json5 9 | .clang-format 10 | .clang-tidy 11 | .clangd 12 | /entry/oh_modules -------------------------------------------------------------------------------- /FguiCreator3.8/settings/Adaptation.json: -------------------------------------------------------------------------------- 1 | { 2 | "scaleMode": "ScaleWithScreenSize", 3 | "screenMathMode": "MatchWidthOrHeight", 4 | "designResolutionX": 750, 5 | "designResolutionY": 1334, 6 | "devices": [], 7 | "fileName": "Adaptation" 8 | } -------------------------------------------------------------------------------- /assets/resources/config/buffer.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "e4f67d71-d470-42d1-9b9a-1f83d235e025", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Net/NetHelper.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "e9a1a84a-bf3a-4b94-aeea-9160d84713f8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Net/header.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "cad69694-c4c3-4d7d-b490-26e5ebd1141e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Basics/Common.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "e7f088c6-38b1-4278-8ba4-4f7de40afb3d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Basics/Header.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d53b1983-3f1e-4e89-8114-88dfcc95075f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/HomeWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "a82b56f3-6cfa-4fd1-a090-44137d7e62d4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/PopWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "5377ee34-e10a-4312-9e6e-d4c3e242a880", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /native/engine/ios/Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'HelloJavascript' target in the 'HelloJavascript' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /assets/script/Data/DataHelper.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "7340bacc-d167-47e8-a83b-2224c46b7fd0", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Helper/NativeCallJS.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6dd5b452-10ce-4d6c-9013-c0c991560dd7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Helper/SDKHelper.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "76eb0078-54f0-400d-a151-68586eaa78f3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Net/NetTaskBase.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "8c6e5935-bded-41fb-9df8-21dd76f82186", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Net/task/NetAuth.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "10bbcb28-912a-4ba5-9bfd-a21668ee8763", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Socket/ProtoInfos.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "d686884b-fad9-4a58-8781-5bac09b47041", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Socket/proto/proto.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "javascript", 4 | "imported": true, 5 | "uuid": "e777207e-c569-4375-838f-aeb51ff06a30", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/CloseAllWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c59e1239-0afc-4df7-b1e9-b7b968b48709", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/CloseOneWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ecbe9481-c878-4ffd-863c-d9db4641ef2a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/ConditionWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "d73deef4-cfcf-4381-8ff4-afee0930c850", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/HideAllWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "1a445c8e-e43f-46b8-8483-c721a76d716e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/HideOneWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "34d16557-9a49-4995-8331-123fe8e47e79", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/PopWindowHeader1.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "a7ecfd55-c16b-4dbf-9451-e11dd2bbdb40", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/PopWindowHeader2.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "d2f063c7-ff7e-44c7-85bb-9ca5f4f452e4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/SocketTestWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f4e808a7-37da-486d-b371-35f2d4f4918b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Window/Components.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "179bd030-c5da-4803-a8aa-999bc7106a35", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Window/PopWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "3f040196-71f3-4af5-af01-ca1c2ed874b8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UIPackageRegister.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f2a30cc8-4ea8-461f-86d0-d8d77d9076f4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/Socket/proto/proto.d.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "1508669b-41ae-40e9-b24e-c4af0f01120d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Window/CloseAllWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "323b9ed8-0b74-4c65-99d4-a9e46e33cd6a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Window/CloseOneWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f107c3dc-ff92-4b78-8384-b8908fa51bd8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Window/HideAllWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c9f63827-cffb-45c8-9bde-6580385ef829", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Window/HideOneWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "3735a1a5-aa89-42a5-b71d-07b405970080", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Window/UIBaseWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "95f0b543-53f1-416e-a789-d1cc9de0e2a8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/condition/Condition1.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "3be3041b-9739-434b-9394-4213b24b3b59", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/condition/Condition2.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "1b1192af-5665-46b9-baeb-d33adc76ac6b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/condition/Condition3.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "754a11fe-b670-49db-b515-f654b6362c57", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/condition/Condition4.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "858a7e41-647f-4043-ae03-a669cacff1d6", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/condition/ConditionType.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "76bebac7-4436-4411-b37a-caae5c016357", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/version.json.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.1", 3 | "importer": "json", 4 | "imported": true, 5 | "uuid": "a9ad4467-afe4-4869-abde-5c8bdb301339", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/script/UI/Basics/Common/AlertWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "434791ba-2680-4643-aea0-ecf8bebc2ff9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Basics/Common/LoadUIWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "0b7e1ba3-9877-45ea-9d1b-71115f04744b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Basics/Common/ToastWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "993ce544-0214-4132-ba2c-2d464aa39257", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Basics/Header/WindowHeader.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "bcb15a03-27d3-46b7-9f6b-53040cd6bbcb", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Condition/ConditionWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "addf31f0-70a4-4238-8b2f-c9971873eaa9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/HotUpdate/HotUpdateWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "25c11bf0-c7a2-4b27-8172-22a0fba89114", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/MiniGame/MiniGameWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "1b9f360b-3ad4-4eb1-9092-1fdab6270a16", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Socket/SocketTestWindow.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "bf8b0dec-aa56-401f-bec1-f9200ac1042d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Window/PopWindowHeader1.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "0760d294-bd0b-4749-b644-0cfe78c3e5d9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/script/UI/Window/PopWindowHeader2.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "28191db1-d974-4911-9fe5-2104cfc45050", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/scene/GameEntry.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "bef93422-3e63-4c0f-a5cf-d926e7360673", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/script/UI/Basics/Header/WindowHeader2.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "2a956cae-8688-40b9-89d3-86407a1f3631", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/uiconfig/ui_config.json.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.1", 3 | "importer": "json", 4 | "imported": true, 5 | "uuid": "35d3b8e9-0096-4aa9-82a1-505784157bf8", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/scene/NativeGameEntry.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "f75274b3-ee34-4805-a3bb-44d0c4617d01", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/script/UI/Window/Components/CustomComponents.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "a8d4cfe1-8b55-4d01-8a17-fddb82a3c035", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /native/engine/harmonyos-next/entry/src/main/resources/base/element/color.json: -------------------------------------------------------------------------------- 1 | { 2 | "color": [ 3 | { 4 | "name": "white", 5 | "value": "#FFFFFF" 6 | }, 7 | { 8 | "name": "black", 9 | "value": "#000000" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /proto/test.proto: -------------------------------------------------------------------------------- 1 | syntax = "proto3"; 2 | 3 | package com.kunpo.proto.test; 4 | 5 | // 用户基本信息 6 | message UserInfo { 7 | int32 userId = 1; 8 | string userName = 2; 9 | string nickName = 3; 10 | int32 level = 4; 11 | int64 createTime = 5; 12 | } 13 | -------------------------------------------------------------------------------- /assets/project.manifest.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "61f59735-b08e-4496-9ad8-0731b9d684ca", 6 | "files": [ 7 | ".json", 8 | ".manifest" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/version.manifest.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "4c477e27-edde-4d59-9963-d7f41168d40e", 6 | "files": [ 7 | ".json", 8 | ".manifest" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/libs/protobuf.min.js.map.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.0", 3 | "importer": "*", 4 | "imported": true, 5 | "uuid": "49c2d61d-b9d9-42a0-b8fb-0e49a16b3aa9", 6 | "files": [ 7 | ".json", 8 | ".map" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/ui/Game.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "acd5e6e2-5bcf-4670-9401-cd449b76d3e3", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/ui/Home.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "331f22ee-2a7d-48af-bc79-762e6fab0930", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /extensions-config/fgui/Home/CustomComponents.json: -------------------------------------------------------------------------------- 1 | { 2 | "props": { 3 | "n1": { 4 | "name": "n1", 5 | "idPath": "n1_hg37", 6 | "namePath": "n1" 7 | } 8 | }, 9 | "callbacks": {}, 10 | "__version__": "0.0.1" 11 | } -------------------------------------------------------------------------------- /FguiCreator3.8/assets/HotUpdate/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /FguiCreator3.8/assets/MiniGame/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Socket/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /assets/resources/ui/Condition.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "0c4eb7a1-ff02-4654-b1e8-cebd83073e64", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/ui/HotUpdate.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "bcc566a0-e9a7-4aa6-874b-1cb226f10f57", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/ui/MiniGame.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "1aafc8a5-bc8e-4c4b-8116-90a779354554", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/ui/Socket.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "f89db7d4-cac2-4d81-9b9f-042a0abbe9c7", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/ui/Window.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "5aa1ffee-27a7-4a3b-85cf-e5714ab05803", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /extensions-config/fgui/Basics/WindowHeader.json: -------------------------------------------------------------------------------- 1 | { 2 | "props": { 3 | "btn_close": { 4 | "name": "n0", 5 | "idPath": "n0_g5jd", 6 | "namePath": "n0" 7 | } 8 | }, 9 | "callbacks": {}, 10 | "__version__": "0.0.1" 11 | } -------------------------------------------------------------------------------- /extensions-config/fgui/Basics/WindowHeader2.json: -------------------------------------------------------------------------------- 1 | { 2 | "props": { 3 | "btn_close": { 4 | "name": "n0", 5 | "idPath": "n0_g5jd", 6 | "namePath": "n0" 7 | } 8 | }, 9 | "callbacks": {}, 10 | "__version__": "0.0.1" 11 | } -------------------------------------------------------------------------------- /extensions-config/fgui/Window/CustomComponents.json: -------------------------------------------------------------------------------- 1 | { 2 | "props": { 3 | "n1": { 4 | "name": "n1", 5 | "idPath": "n1_hg37", 6 | "namePath": "n1" 7 | } 8 | }, 9 | "callbacks": {}, 10 | "__version__": "0.0.1" 11 | } -------------------------------------------------------------------------------- /assets/resources/config/buffer/dict.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "5f5f19ff-554c-47e3-babc-05ac4e5b0738", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/config/buffer/list.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "f0f09729-0846-4cb5-8014-12615f57c9f9", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/ui/manual/Basics.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "8d6a01b1-dad8-46b4-9fdc-5bbfcc52444a", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/ui/manual/Home.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "0ddbad49-93fa-4a05-b864-4b0855833c48", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/script/condition/ConditionType.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @Author: Gongxh 3 | * @Date: 2025-02-17 4 | * @Description: 条件类型 5 | */ 6 | 7 | export enum ConditionType { 8 | None = 0, 9 | Condition1 = 1, 10 | Condition2 = 2, 11 | Condition3 = 3, 12 | Condition4 = 4, 13 | } -------------------------------------------------------------------------------- /assets/resources/config/buffer/DictSheet.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "c34c30bc-709b-4ad8-9191-8c15875d0d85", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/config/buffer/basic.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "49fb1ab9-a06e-4157-b733-dd3a64202b7c", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/config/buffer/dict_list.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "3dc75f69-a4e2-409a-b107-491b4a3105fc", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/config/buffer/list_dict.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "7ccddeab-1e82-4f7d-884c-136b0c761fec", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /extensions-config/fgui/Basics/LoadUIWindow.json: -------------------------------------------------------------------------------- 1 | { 2 | "props": { 3 | "lab_desc": { 4 | "name": "lab_tips", 5 | "idPath": "n1_tihq", 6 | "namePath": "lab_tips" 7 | } 8 | }, 9 | "callbacks": {}, 10 | "__version__": "0.0.1" 11 | } -------------------------------------------------------------------------------- /native/engine/harmonyos-next/hvigorfile.ts: -------------------------------------------------------------------------------- 1 | import { appTasks } from '@ohos/hvigor-ohos-plugin'; 2 | 3 | export default { 4 | system: appTasks, /* Built-in plugin of Hvigor. It cannot be modified. */ 5 | plugins:[] /* Custom plugin to extend the functionality of Hvigor. */ 6 | } 7 | -------------------------------------------------------------------------------- /assets/bundle_res.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "6af74e7e-0a88-45ee-9f54-eb9fe4dbf93b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "isBundle": true, 10 | "bundleFilterConfig": [] 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/resources/config/buffer/dict_list_dict.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "bf33d428-e248-4887-a41f-b159bcc30016", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | /* Base configuration. Do not edit this field. */ 3 | "extends": "./temp/tsconfig.cocos.json", 4 | /* Add your custom configuration here. */ 5 | "compilerOptions": { 6 | "strict": false, 7 | "module": "ES6", 8 | "target": "ES6" 9 | } 10 | } -------------------------------------------------------------------------------- /assets/resources/anim/rotate.anim.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.3", 3 | "importer": "animation-clip", 4 | "imported": true, 5 | "uuid": "94e351a1-10f0-41f7-ab21-f29c24e9a2ce", 6 | "files": [ 7 | ".cconb" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "name": "rotate" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /assets/resources/prefab/ball.prefab.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "prefab", 4 | "imported": true, 5 | "uuid": "56dc9bdf-19c7-4319-8c27-628ea6424696", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": { 11 | "syncNodeName": "ball" 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Home/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /native/engine/harmonyos-next/AppScope/app.json5: -------------------------------------------------------------------------------- 1 | { 2 | "app": { 3 | "bundleName": "com.kunpo.test", 4 | "vendor": "example", 5 | "versionCode": 1, 6 | "versionName": "0.0.1", 7 | "icon": "$media:app_icon", 8 | "label": "$string:app_name", 9 | "distributedNotificationEnabled": true 10 | } 11 | } -------------------------------------------------------------------------------- /assets/version.manifest: -------------------------------------------------------------------------------- 1 | {"remoteManifestUrl":"https://cdn-laonainai.lanfeitech.com/test/hot-update-debug/v0.0.1/android/0/project.manifest","remoteVersionUrl":"https://cdn-laonainai.lanfeitech.com/test/hot-update-debug/v0.0.1/android/version.manifest","version":"0","packageUrl":"https://cdn-laonainai.lanfeitech.com/test/hot-update-debug/v0.0.1/android/0"} -------------------------------------------------------------------------------- /native/engine/harmonyos-next/entry/oh-package.json5: -------------------------------------------------------------------------------- 1 | { 2 | "license": "", 3 | "devDependencies": {}, 4 | "author": "", 5 | "name": "entry", 6 | "description": "Please describe the basic information.", 7 | "main": "", 8 | "version": "1.0.0", 9 | "dependencies": { 10 | "libcocos.so": "file:./src/main/cpp/types/libcocos" 11 | } 12 | } -------------------------------------------------------------------------------- /assets/resources.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "9d91ce52-ffe8-43c0-a118-9ace6bd9cf45", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "isBundle": true, 10 | "bundleConfigID": "default", 11 | "bundleName": "resources", 12 | "priority": 8 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /settings/v2/packages/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.6", 3 | "general": { 4 | "designResolution": { 5 | "height": 1334, 6 | "width": 750, 7 | "fitHeight": true 8 | }, 9 | "highQuality": false 10 | }, 11 | "custom_joint_texture_layouts": [], 12 | "script": { 13 | "preserveSymlinks": true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /native/engine/harmonyos-next/oh-package.json5: -------------------------------------------------------------------------------- 1 | { 2 | modelVersion: '5.0.0', 3 | devDependencies: { 4 | '@ohos/hypium': '1.0.18', 5 | '@ohos/hamock': '1.0.0', 6 | }, 7 | author: '', 8 | name: 'kunpocreator', 9 | description: 'example description', 10 | main: '', 11 | version: '1.0.0', 12 | dependencies: {}, 13 | } -------------------------------------------------------------------------------- /lib.d.ts/SDKHelper.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @Author: Gongxh 3 | * @Date: 2025-03-21 4 | * @Description: 5 | */ 6 | 7 | declare namespace KunpoSDK { 8 | class SDKHelper { 9 | static getInstance(): SDKHelper; 10 | 11 | public getSystemInfo(): void; 12 | public getVersionCode(): string; 13 | public getBuildCode(): number; 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kunpocreator", 3 | "uuid": "f5d24040-9cd4-4a5a-8559-38bf55e621f7", 4 | "creator": { 5 | "version": "3.8.6" 6 | }, 7 | "dependencies": { 8 | "fairygui-cc": "^1.2.2", 9 | "kunpocc": "^1.1.5", 10 | "kunpocc-assets": "^0.0.1", 11 | "kunpocc-event": "^0.0.2", 12 | "kunpocc-net": "^0.0.2", 13 | "ts-node": "^10.9.2" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /FguiCreator3.8/assets/Basics/header/WindowHeader.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |