├── .gitattributes ├── BaseProject ├── CoreProject │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc.js │ ├── .vscode │ │ └── settings.json │ ├── assets │ │ ├── resources.meta │ │ ├── resources │ │ │ ├── data.meta │ │ │ ├── data │ │ │ │ ├── systemConfig.json │ │ │ │ └── systemConfig.json.meta │ │ │ ├── resource.json │ │ │ ├── resource.json.meta │ │ │ ├── ui.meta │ │ │ └── ui │ │ │ │ ├── bag.bin │ │ │ │ ├── bag.bin.meta │ │ │ │ ├── bag_atlas0.png │ │ │ │ ├── bag_atlas0.png.meta │ │ │ │ ├── main.bin │ │ │ │ ├── main.bin.meta │ │ │ │ ├── main_atlas0.png │ │ │ │ ├── main_atlas0.png.meta │ │ │ │ ├── preload.bin │ │ │ │ ├── preload.bin.meta │ │ │ │ ├── preload_atlas0.png │ │ │ │ ├── preload_atlas0.png.meta │ │ │ │ ├── uiShare.bin │ │ │ │ └── uiShare.bin.meta │ │ ├── scene.meta │ │ ├── scene │ │ │ ├── App.fire │ │ │ └── App.fire.meta │ │ ├── script.meta │ │ └── script │ │ │ ├── config.meta │ │ │ ├── config │ │ │ ├── AppConfig.ts │ │ │ ├── AppConfig.ts.meta │ │ │ ├── I18nConfig.ts │ │ │ └── I18nConfig.ts.meta │ │ │ ├── core.meta │ │ │ ├── core │ │ │ ├── App.ts │ │ │ ├── App.ts.meta │ │ │ ├── AppEntry.ts │ │ │ ├── AppEntry.ts.meta │ │ │ ├── base.meta │ │ │ ├── base │ │ │ │ ├── BComponent.ts │ │ │ │ ├── BComponent.ts.meta │ │ │ │ ├── Singleton.ts │ │ │ │ └── Singleton.ts.meta │ │ │ ├── const.meta │ │ │ ├── const │ │ │ │ ├── CoreConst.ts │ │ │ │ ├── CoreConst.ts.meta │ │ │ │ ├── ViewLayer.ts │ │ │ │ └── ViewLayer.ts.meta │ │ │ ├── i18n.meta │ │ │ ├── i18n │ │ │ │ ├── I18n.ts │ │ │ │ └── I18n.ts.meta │ │ │ ├── manager.meta │ │ │ ├── manager │ │ │ │ ├── EventManager.ts │ │ │ │ ├── EventManager.ts.meta │ │ │ │ ├── FguiManager.ts │ │ │ │ ├── FguiManager.ts.meta │ │ │ │ ├── I18nManager.ts │ │ │ │ ├── I18nManager.ts.meta │ │ │ │ ├── LayerManager.ts │ │ │ │ ├── LayerManager.ts.meta │ │ │ │ ├── LoadManager.ts │ │ │ │ ├── LoadManager.ts.meta │ │ │ │ ├── ModelManager.ts │ │ │ │ ├── ModelManager.ts.meta │ │ │ │ ├── NetManager.ts │ │ │ │ ├── NetManager.ts.meta │ │ │ │ ├── PathManager.ts │ │ │ │ ├── PathManager.ts.meta │ │ │ │ ├── PlatformManager.ts │ │ │ │ ├── PlatformManager.ts.meta │ │ │ │ ├── ResManager.ts │ │ │ │ ├── ResManager.ts.meta │ │ │ │ ├── SoundManager.ts │ │ │ │ ├── SoundManager.ts.meta │ │ │ │ ├── StageManager.ts │ │ │ │ ├── StageManager.ts.meta │ │ │ │ ├── SystemManager.ts │ │ │ │ ├── SystemManager.ts.meta │ │ │ │ ├── TimeManager.ts │ │ │ │ ├── TimeManager.ts.meta │ │ │ │ ├── ViewManager.ts │ │ │ │ └── ViewManager.ts.meta │ │ │ ├── mvc.meta │ │ │ ├── mvc │ │ │ │ ├── BaseCtrl.ts │ │ │ │ ├── BaseCtrl.ts.meta │ │ │ │ ├── BaseModel.ts │ │ │ │ ├── BaseModel.ts.meta │ │ │ │ ├── BaseView.ts │ │ │ │ ├── BaseView.ts.meta │ │ │ │ ├── BaseViewData.ts │ │ │ │ └── BaseViewData.ts.meta │ │ │ ├── net.meta │ │ │ ├── net │ │ │ │ ├── HttpRequest.ts │ │ │ │ └── HttpRequest.ts.meta │ │ │ ├── utils.meta │ │ │ └── utils │ │ │ │ ├── ArrayUtils.ts │ │ │ │ ├── ArrayUtils.ts.meta │ │ │ │ ├── DateUtils.ts │ │ │ │ ├── DateUtils.ts.meta │ │ │ │ ├── DebugUtils.ts │ │ │ │ ├── DebugUtils.ts.meta │ │ │ │ ├── DisplayUtils.ts │ │ │ │ ├── DisplayUtils.ts.meta │ │ │ │ ├── EffectUtils.ts │ │ │ │ ├── EffectUtils.ts.meta │ │ │ │ ├── MathUtils.ts │ │ │ │ ├── MathUtils.ts.meta │ │ │ │ ├── RandomUtils.ts │ │ │ │ ├── RandomUtils.ts.meta │ │ │ │ ├── StringUtils.ts │ │ │ │ └── StringUtils.ts.meta │ │ │ ├── libs.meta │ │ │ ├── libs │ │ │ ├── fairygui.d.ts │ │ │ ├── fairygui.d.ts.meta │ │ │ ├── fairygui.js │ │ │ ├── fairygui.js.meta │ │ │ ├── wx.d.ts │ │ │ └── wx.d.ts.meta │ │ │ ├── module.meta │ │ │ └── module │ │ │ ├── bag.meta │ │ │ ├── bag │ │ │ ├── BagCtrl.ts │ │ │ ├── BagCtrl.ts.meta │ │ │ ├── BagView.ts │ │ │ └── BagView.ts.meta │ │ │ ├── main.meta │ │ │ ├── main │ │ │ ├── MainCtrl.ts │ │ │ ├── MainCtrl.ts.meta │ │ │ ├── MainView.ts │ │ │ └── MainView.ts.meta │ │ │ ├── preload.meta │ │ │ └── preload │ │ │ ├── GlobalModalWaiting.ts │ │ │ └── GlobalModalWaiting.ts.meta │ ├── build-templates │ │ └── web-mobile │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ ├── splash.png │ │ │ ├── style-desktop.css │ │ │ └── style-mobile.css │ ├── creator.d.ts │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── project.json │ ├── settings │ │ ├── builder.json │ │ ├── builder.panel.json │ │ ├── project.json │ │ └── services.json │ └── tsconfig.json ├── CoreUiProject │ ├── .gitignore │ ├── CoreUiProject.fairy │ ├── assets │ │ ├── bag │ │ │ ├── BagView.xml │ │ │ ├── image │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ └── 8.png │ │ │ └── package.xml │ │ ├── main │ │ │ ├── MainView.xml │ │ │ ├── image │ │ │ │ └── bagIm.png │ │ │ └── package.xml │ │ ├── preload │ │ │ ├── GlobalModalWaiting.xml │ │ │ ├── image │ │ │ │ ├── bar.png │ │ │ │ ├── barBg.png │ │ │ │ └── wBg.png │ │ │ └── package.xml │ │ └── uiShare │ │ │ ├── btn │ │ │ └── Button.xml │ │ │ └── package.xml │ └── settings │ │ ├── Adaptation.json │ │ ├── Common.json │ │ ├── CustomProperties.json │ │ ├── Publish.json │ │ └── i18n.json └── README.md ├── BaseProject3X ├── BaseProject3X │ ├── .creator │ │ └── asset-template │ │ │ └── typescript │ │ │ └── Custom Script Template Help Documentation.url │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc.js │ ├── .vscode │ │ └── settings.json │ ├── assets │ │ ├── dynamic.meta │ │ ├── dynamic │ │ │ ├── data.meta │ │ │ ├── data │ │ │ │ ├── ncb_tbglobal.bin │ │ │ │ └── ncb_tbglobal.bin.meta │ │ │ ├── main.meta │ │ │ └── main │ │ │ │ ├── MainView.prefab │ │ │ │ └── MainView.prefab.meta │ │ ├── scene.meta │ │ ├── scene │ │ │ ├── App.scene │ │ │ └── App.scene.meta │ │ ├── script.meta │ │ └── script │ │ │ ├── config.meta │ │ │ ├── config │ │ │ ├── AppConfig.ts │ │ │ └── AppConfig.ts.meta │ │ │ ├── core.meta │ │ │ ├── core │ │ │ ├── App.ts │ │ │ ├── App.ts.meta │ │ │ ├── AppEntry.ts │ │ │ ├── AppEntry.ts.meta │ │ │ ├── base.meta │ │ │ ├── base │ │ │ │ ├── Singleton.ts │ │ │ │ └── Singleton.ts.meta │ │ │ ├── components.meta │ │ │ ├── components │ │ │ │ ├── D3Lable.ts │ │ │ │ ├── D3Lable.ts.meta │ │ │ │ ├── PersistRootNode.ts │ │ │ │ ├── PersistRootNode.ts.meta │ │ │ │ ├── RotationBody.ts │ │ │ │ ├── RotationBody.ts.meta │ │ │ │ ├── SeedRandom.ts │ │ │ │ ├── SeedRandom.ts.meta │ │ │ │ ├── UID.ts │ │ │ │ ├── UID.ts.meta │ │ │ │ ├── VideoSprite.ts │ │ │ │ └── VideoSprite.ts.meta │ │ │ ├── const.meta │ │ │ ├── const │ │ │ │ ├── ViewConst.ts │ │ │ │ └── ViewConst.ts.meta │ │ │ ├── manager.meta │ │ │ ├── manager │ │ │ │ ├── AudioManager.ts │ │ │ │ ├── AudioManager.ts.meta │ │ │ │ ├── ConfigManager.ts │ │ │ │ ├── ConfigManager.ts.meta │ │ │ │ ├── EventManager.ts │ │ │ │ ├── EventManager.ts.meta │ │ │ │ ├── LayerManager.ts │ │ │ │ ├── LayerManager.ts.meta │ │ │ │ ├── LoadManager.ts │ │ │ │ ├── LoadManager.ts.meta │ │ │ │ ├── ModelManager.ts │ │ │ │ ├── ModelManager.ts.meta │ │ │ │ ├── ResManager.ts │ │ │ │ ├── ResManager.ts.meta │ │ │ │ ├── StageManager.ts │ │ │ │ ├── StageManager.ts.meta │ │ │ │ ├── ViewManager.ts │ │ │ │ └── ViewManager.ts.meta │ │ │ ├── mvc.meta │ │ │ ├── mvc │ │ │ │ ├── BaseCtrl.ts │ │ │ │ ├── BaseCtrl.ts.meta │ │ │ │ ├── BaseModel.ts │ │ │ │ ├── BaseModel.ts.meta │ │ │ │ ├── BaseView.ts │ │ │ │ ├── BaseView.ts.meta │ │ │ │ ├── BaseViewData.ts │ │ │ │ └── BaseViewData.ts.meta │ │ │ ├── types.meta │ │ │ ├── types │ │ │ │ ├── Types.ts │ │ │ │ └── Types.ts.meta │ │ │ ├── utils.meta │ │ │ └── utils │ │ │ │ ├── ArrayUtils.ts │ │ │ │ ├── ArrayUtils.ts.meta │ │ │ │ ├── DateUtils.ts │ │ │ │ ├── DateUtils.ts.meta │ │ │ │ ├── DebugUtils.ts │ │ │ │ ├── DebugUtils.ts.meta │ │ │ │ ├── DisplayUtils.ts │ │ │ │ ├── DisplayUtils.ts.meta │ │ │ │ ├── EditorUtils.ts │ │ │ │ ├── EditorUtils.ts.meta │ │ │ │ ├── EffectUtils.ts │ │ │ │ ├── EffectUtils.ts.meta │ │ │ │ ├── MathUtils.ts │ │ │ │ ├── MathUtils.ts.meta │ │ │ │ ├── MatrixUtils.ts │ │ │ │ ├── MatrixUtils.ts.meta │ │ │ │ ├── QuatUtils.ts │ │ │ │ ├── QuatUtils.ts.meta │ │ │ │ ├── RandomUtils.ts │ │ │ │ ├── RandomUtils.ts.meta │ │ │ │ ├── StringUtils.ts │ │ │ │ ├── StringUtils.ts.meta │ │ │ │ ├── UrlUtils.ts │ │ │ │ ├── UrlUtils.ts.meta │ │ │ │ ├── VecUtils.ts │ │ │ │ └── VecUtils.ts.meta │ │ │ ├── luban.meta │ │ │ ├── luban │ │ │ ├── bright.meta │ │ │ ├── bright │ │ │ │ ├── serialization.meta │ │ │ │ └── serialization │ │ │ │ │ ├── ByteBuf.ts │ │ │ │ │ └── ByteBuf.ts.meta │ │ │ ├── code.meta │ │ │ └── code │ │ │ │ ├── schema.ts │ │ │ │ └── schema.ts.meta │ │ │ ├── module.meta │ │ │ └── module │ │ │ ├── main.meta │ │ │ └── main │ │ │ ├── MainView.ts │ │ │ └── MainView.ts.meta │ ├── build_data.bat │ ├── package.json │ ├── preview-template │ │ ├── dist │ │ │ ├── assets │ │ │ │ ├── index.691dfd76.js │ │ │ │ └── index.741f95c0.css │ │ │ └── index.html │ │ ├── index.ejs │ │ └── version.json │ ├── profiles │ │ └── v2 │ │ │ ├── editor │ │ │ └── packages.json │ │ │ └── packages │ │ │ ├── builder.json │ │ │ ├── device.json │ │ │ ├── engine.json │ │ │ ├── program.json │ │ │ ├── project.json │ │ │ ├── reference-image.json │ │ │ ├── scene.json │ │ │ └── server.json │ ├── settings │ │ └── v2 │ │ │ └── packages │ │ │ ├── builder.json │ │ │ ├── cocos-service.json │ │ │ ├── device.json │ │ │ ├── engine.json │ │ │ ├── information.json │ │ │ ├── program.json │ │ │ └── project.json │ ├── tools │ │ ├── Luban │ │ │ ├── CommandLine.dll │ │ │ ├── ExcelDataReader.dll │ │ │ ├── Google.Protobuf.dll │ │ │ ├── Luban.Bson.deps.json │ │ │ ├── Luban.Bson.dll │ │ │ ├── Luban.Bson.pdb │ │ │ ├── Luban.CSharp.deps.json │ │ │ ├── Luban.CSharp.dll │ │ │ ├── Luban.CSharp.pdb │ │ │ ├── Luban.Core.deps.json │ │ │ ├── Luban.Core.dll │ │ │ ├── Luban.Core.pdb │ │ │ ├── Luban.Cpp.deps.json │ │ │ ├── Luban.Cpp.dll │ │ │ ├── Luban.Cpp.pdb │ │ │ ├── Luban.DataLoader.Builtin.deps.json │ │ │ ├── Luban.DataLoader.Builtin.dll │ │ │ ├── Luban.DataLoader.Builtin.pdb │ │ │ ├── Luban.DataTarget.Builtin.deps.json │ │ │ ├── Luban.DataTarget.Builtin.dll │ │ │ ├── Luban.DataTarget.Builtin.pdb │ │ │ ├── Luban.DataValidator.Builtin.deps.json │ │ │ ├── Luban.DataValidator.Builtin.dll │ │ │ ├── Luban.DataValidator.Builtin.pdb │ │ │ ├── Luban.FlatBuffers.deps.json │ │ │ ├── Luban.FlatBuffers.dll │ │ │ ├── Luban.FlatBuffers.pdb │ │ │ ├── Luban.Gdscript.deps.json │ │ │ ├── Luban.Gdscript.dll │ │ │ ├── Luban.Gdscript.pdb │ │ │ ├── Luban.Golang.deps.json │ │ │ ├── Luban.Golang.dll │ │ │ ├── Luban.Golang.pdb │ │ │ ├── Luban.Java.deps.json │ │ │ ├── Luban.Java.dll │ │ │ ├── Luban.Java.pdb │ │ │ ├── Luban.L10N.deps.json │ │ │ ├── Luban.L10N.dll │ │ │ ├── Luban.L10N.pdb │ │ │ ├── Luban.Lua.deps.json │ │ │ ├── Luban.Lua.dll │ │ │ ├── Luban.Lua.pdb │ │ │ ├── Luban.MsgPack.deps.json │ │ │ ├── Luban.MsgPack.dll │ │ │ ├── Luban.MsgPack.pdb │ │ │ ├── Luban.PHP.deps.json │ │ │ ├── Luban.PHP.dll │ │ │ ├── Luban.PHP.pdb │ │ │ ├── Luban.Protobuf.deps.json │ │ │ ├── Luban.Protobuf.dll │ │ │ ├── Luban.Protobuf.pdb │ │ │ ├── Luban.Python.deps.json │ │ │ ├── Luban.Python.dll │ │ │ ├── Luban.Python.pdb │ │ │ ├── Luban.Rust.deps.json │ │ │ ├── Luban.Rust.dll │ │ │ ├── Luban.Rust.pdb │ │ │ ├── Luban.Schema.Builtin.deps.json │ │ │ ├── Luban.Schema.Builtin.dll │ │ │ ├── Luban.Schema.Builtin.pdb │ │ │ ├── Luban.Schema.Builtin.runtimeconfig.json │ │ │ ├── Luban.Typescript.deps.json │ │ │ ├── Luban.Typescript.dll │ │ │ ├── Luban.Typescript.pdb │ │ │ ├── Luban.deps.json │ │ │ ├── Luban.dll │ │ │ ├── Luban.exe │ │ │ ├── Luban.pdb │ │ │ ├── Luban.runtimeconfig.json │ │ │ ├── MessagePack.Annotations.dll │ │ │ ├── MessagePack.dll │ │ │ ├── Microsoft.NET.StringTools.dll │ │ │ ├── NLog.dll │ │ │ ├── Neo.Lua.dll │ │ │ ├── Newtonsoft.Json.Bson.dll │ │ │ ├── Newtonsoft.Json.dll │ │ │ ├── Scriban.dll │ │ │ ├── Templates │ │ │ │ ├── common │ │ │ │ │ ├── cpp │ │ │ │ │ │ └── enum.sbn │ │ │ │ │ ├── cs │ │ │ │ │ │ └── enum.sbn │ │ │ │ │ ├── go │ │ │ │ │ │ └── enum.sbn │ │ │ │ │ ├── java │ │ │ │ │ │ └── enum.sbn │ │ │ │ │ ├── php │ │ │ │ │ │ └── enum.sbn │ │ │ │ │ ├── rs │ │ │ │ │ │ └── macros │ │ │ │ │ │ │ ├── Cargo.toml.sbn │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── lib.rs.sbn │ │ │ │ │ └── ts │ │ │ │ │ │ └── enum.sbn │ │ │ │ ├── cpp-rawptr-bin │ │ │ │ │ ├── bean.sbn │ │ │ │ │ ├── schema_cpp.sbn │ │ │ │ │ ├── schema_h.sbn │ │ │ │ │ ├── table.sbn │ │ │ │ │ └── tables.sbn │ │ │ │ ├── cpp-sharedptr-bin │ │ │ │ │ ├── bean.sbn │ │ │ │ │ ├── schema_cpp.sbn │ │ │ │ │ ├── schema_h.sbn │ │ │ │ │ ├── table.sbn │ │ │ │ │ └── tables.sbn │ │ │ │ ├── cs-bin │ │ │ │ │ ├── bean.sbn │ │ │ │ │ ├── table.sbn │ │ │ │ │ └── tables.sbn │ │ │ │ ├── cs-dotnet-json │ │ │ │ │ ├── bean.sbn │ │ │ │ │ ├── table.sbn │ │ │ │ │ └── tables.sbn │ │ │ │ ├── cs-editor-json │ │ │ │ │ ├── bean.sbn │ │ │ │ │ └── enum.sbn │ │ │ │ ├── cs-newtonsoft-json │ │ │ │ │ ├── bean.sbn │ │ │ │ │ ├── table.sbn │ │ │ │ │ └── tables.sbn │ │ │ │ ├── cs-simple-json │ │ │ │ │ ├── bean.sbn │ │ │ │ │ ├── table.sbn │ │ │ │ │ └── tables.sbn │ │ │ │ ├── cs_pb │ │ │ │ │ └── tables.sbn │ │ │ │ ├── flatbuffers │ │ │ │ │ └── schema.sbn │ │ │ │ ├── gdscript-json │ │ │ │ │ └── schema.sbn │ │ │ │ ├── go-bin │ │ │ │ │ ├── bean.sbn │ │ │ │ │ ├── table.sbn │ │ │ │ │ └── tables.sbn │ │ │ │ ├── go-json │ │ │ │ │ ├── bean.sbn │ │ │ │ │ ├── table.sbn │ │ │ │ │ └── tables.sbn │ │ │ │ ├── java-bin │ │ │ │ │ ├── bean.sbn │ │ │ │ │ ├── table.sbn │ │ │ │ │ └── tables.sbn │ │ │ │ ├── java-json │ │ │ │ │ ├── bean.sbn │ │ │ │ │ ├── table.sbn │ │ │ │ │ └── tables.sbn │ │ │ │ ├── lua-bin │ │ │ │ │ └── schema.sbn │ │ │ │ ├── lua-lua │ │ │ │ │ └── schema.sbn │ │ │ │ ├── pb │ │ │ │ │ └── schema.sbn │ │ │ │ ├── php-json │ │ │ │ │ └── schema.sbn │ │ │ │ ├── python-json │ │ │ │ │ └── schema.sbn │ │ │ │ ├── rust-bin │ │ │ │ │ ├── lib.sbn │ │ │ │ │ ├── mod.sbn │ │ │ │ │ └── toml.sbn │ │ │ │ ├── rust-json │ │ │ │ │ ├── lib.sbn │ │ │ │ │ ├── mod.sbn │ │ │ │ │ └── toml.sbn │ │ │ │ ├── typescript-bin │ │ │ │ │ └── schema.sbn │ │ │ │ ├── typescript-json │ │ │ │ │ └── schema.sbn │ │ │ │ └── typescript-protobuf │ │ │ │ │ └── schema.sbn │ │ │ ├── Ude.NetStandard.dll │ │ │ ├── YamlDotNet.NetCore.dll │ │ │ ├── de │ │ │ │ └── Neo.Lua.resources.dll │ │ │ └── nlog.xml │ │ └── protoc │ │ │ ├── bin │ │ │ └── protoc.exe │ │ │ └── include │ │ │ └── google │ │ │ └── protobuf │ │ │ ├── any.proto │ │ │ ├── api.proto │ │ │ ├── compiler │ │ │ └── plugin.proto │ │ │ ├── descriptor.proto │ │ │ ├── duration.proto │ │ │ ├── empty.proto │ │ │ ├── field_mask.proto │ │ │ ├── source_context.proto │ │ │ ├── struct.proto │ │ │ ├── timestamp.proto │ │ │ ├── type.proto │ │ │ └── wrappers.proto │ └── tsconfig.json └── Design │ └── Datas │ ├── __beans__.xlsx │ ├── __enums__.xlsx │ ├── __tables__.xlsx │ ├── __zconfig__.conf │ └── global.xlsx ├── ElectronWindow ├── CreatorMessage │ ├── .creator │ │ ├── asset-template │ │ │ └── typescript │ │ │ │ └── Custom Script Template Help Documentation.url │ │ └── default-meta.json │ ├── .gitignore │ ├── assets │ │ ├── Test.ts │ │ ├── Test.ts.meta │ │ ├── main.scene │ │ └── main.scene.meta │ ├── package.json │ ├── settings │ │ └── v2 │ │ │ └── packages │ │ │ ├── builder.json │ │ │ ├── cocos-service.json │ │ │ ├── device.json │ │ │ ├── engine.json │ │ │ ├── information.json │ │ │ ├── program.json │ │ │ └── project.json │ └── tsconfig.json └── ElectronBuildWindow │ ├── .gitignore │ ├── README.md │ ├── build.bat │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── preload.js │ ├── public │ ├── application.js │ ├── assets │ │ ├── internal │ │ │ ├── config.json │ │ │ ├── import │ │ │ │ └── 0f │ │ │ │ │ └── 0fcbd05f8.json │ │ │ └── index.js │ │ └── main │ │ │ ├── config.json │ │ │ ├── import │ │ │ ├── 20 │ │ │ │ └── 20835ba4-6145-4fbc-a58a-051ce700aa3e.json │ │ │ ├── 54 │ │ │ │ └── 544e49d6-3f05-4fa8-9a9e-091f98fc2ce8.json │ │ │ ├── 95 │ │ │ │ └── 951249e0-9f16-456d-8b85-a6ca954da16b.json │ │ │ ├── 04 │ │ │ │ └── 04385752e.json │ │ │ ├── 07 │ │ │ │ └── 07c40eb31.json │ │ │ ├── bd │ │ │ │ └── bd1bcaba-bd7d-4a71-b143-997c882383e4.json │ │ │ └── fd │ │ │ │ └── fd8ec536-a354-4a17-9c74-4f3883c378c8.json │ │ │ ├── index.js │ │ │ └── native │ │ │ ├── 20 │ │ │ └── 20835ba4-6145-4fbc-a58a-051ce700aa3e.png │ │ │ ├── 54 │ │ │ └── 544e49d6-3f05-4fa8-9a9e-091f98fc2ce8.png │ │ │ ├── 95 │ │ │ └── 951249e0-9f16-456d-8b85-a6ca954da16b.png │ │ │ ├── 6f │ │ │ ├── 6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0@40c10.png │ │ │ ├── 6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0@74afd.png │ │ │ ├── 6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0@7d38f.png │ │ │ ├── 6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0@8fd34.png │ │ │ ├── 6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0@bb97f.png │ │ │ └── 6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0@e9a6d.png │ │ │ ├── bd │ │ │ └── bd1bcaba-bd7d-4a71-b143-997c882383e4.png │ │ │ └── d0 │ │ │ ├── d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0@40c10.png │ │ │ ├── d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0@74afd.png │ │ │ ├── d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0@7d38f.png │ │ │ ├── d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0@8fd34.png │ │ │ ├── d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0@bb97f.png │ │ │ └── d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0@e9a6d.png │ ├── cocos-js │ │ ├── _virtual_cc-BL_aScgX.js │ │ ├── assets │ │ │ ├── bullet.release.wasm-BWZhVGCB.wasm │ │ │ ├── spine-u3j38j0v.wasm │ │ │ └── spine.js.mem-1a7qSucW.bin │ │ ├── bullet.release.asm-5I7GUvO1.js │ │ ├── bullet.release.wasm-BrNAez8g.js │ │ ├── bullet.release.wasm-vGDNSL-o.js │ │ ├── cc.js │ │ ├── spine-Ubv7RmXU.js │ │ ├── spine.asm-Keb2DSTX.js │ │ ├── spine.js-DNSIZkQO.js │ │ └── spine.wasm-C1_WtTo9.js │ ├── index.html │ ├── index.js │ ├── src │ │ ├── chunks │ │ │ └── bundle.js │ │ ├── effect.bin │ │ ├── import-map.json │ │ ├── polyfills.bundle.js │ │ ├── settings.json │ │ └── system.bundle.js │ └── style.css │ └── start.bat ├── Extensions ├── .creator │ └── asset-template │ │ └── typescript │ │ └── Custom Script Template Help Documentation.url ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── README.md ├── assets │ ├── scripts.meta │ └── scripts │ │ ├── Test.ts │ │ └── Test.ts.meta ├── extensions │ ├── ability │ │ ├── @types │ │ │ └── schema │ │ │ │ └── package │ │ │ │ ├── base │ │ │ │ └── panels.json │ │ │ │ ├── contributions │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ ├── README.md │ │ ├── README.zh-CN.md │ │ ├── assets │ │ │ ├── runtime.meta │ │ │ └── runtime │ │ │ │ ├── Ability.ts │ │ │ │ ├── Ability.ts.meta │ │ │ │ ├── AbilityAttack.ts │ │ │ │ ├── AbilityAttack.ts.meta │ │ │ │ ├── AbilityCallback.ts │ │ │ │ ├── AbilityCallback.ts.meta │ │ │ │ ├── AbilityData.ts │ │ │ │ ├── AbilityData.ts.meta │ │ │ │ ├── AbilityEffect.ts │ │ │ │ ├── AbilityEffect.ts.meta │ │ │ │ ├── AbilityParse.ts │ │ │ │ ├── AbilityParse.ts.meta │ │ │ │ ├── AbilityPool.ts │ │ │ │ ├── AbilityPool.ts.meta │ │ │ │ ├── AbilitySound.ts │ │ │ │ ├── AbilitySound.ts.meta │ │ │ │ ├── AbilityStats.ts │ │ │ │ ├── AbilityStats.ts.meta │ │ │ │ ├── AbilitySystem.ts │ │ │ │ ├── AbilitySystem.ts.meta │ │ │ │ ├── ISkillStruct.ts.meta │ │ │ │ ├── common.meta │ │ │ │ ├── effect.meta │ │ │ │ ├── frame.meta │ │ │ │ ├── frame │ │ │ │ ├── Const.ts │ │ │ │ ├── Const.ts.meta │ │ │ │ ├── ISyncs.ts │ │ │ │ ├── ISyncs.ts.meta │ │ │ │ ├── MathUtils.ts.meta │ │ │ │ ├── MatrixUtils.ts.meta │ │ │ │ ├── RandomUtils.ts.meta │ │ │ │ ├── SeedRandom.ts.meta │ │ │ │ ├── Singleton.ts.meta │ │ │ │ ├── Status.ts.meta │ │ │ │ ├── Types.ts.meta │ │ │ │ ├── UID.ts.meta │ │ │ │ └── VecUtils.ts.meta │ │ │ │ ├── implements.meta │ │ │ │ ├── implements │ │ │ │ ├── 10xxx.ts │ │ │ │ ├── 10xxx.ts.meta │ │ │ │ ├── 20xxx.ts.meta │ │ │ │ ├── 30xxx.ts.meta │ │ │ │ ├── 31xxx.ts.meta │ │ │ │ ├── index.ts │ │ │ │ └── index.ts.meta │ │ │ │ ├── interface.meta │ │ │ │ ├── interface │ │ │ │ ├── Const.ts │ │ │ │ ├── Const.ts.meta │ │ │ │ ├── IBase.ts │ │ │ │ ├── IBase.ts.meta │ │ │ │ ├── IStruct.ts │ │ │ │ └── IStruct.ts.meta │ │ │ │ ├── utils.meta │ │ │ │ └── utils │ │ │ │ ├── AbilityCreateUtils.ts │ │ │ │ ├── AbilityCreateUtils.ts.meta │ │ │ │ ├── AbilityEffectUtils.ts │ │ │ │ ├── AbilityEffectUtils.ts.meta │ │ │ │ ├── AbilityFormulaUtils.ts │ │ │ │ ├── AbilityFormulaUtils.ts.meta │ │ │ │ ├── AbilityTargetUtils.ts │ │ │ │ ├── AbilityTargetUtils.ts.meta │ │ │ │ ├── AbilityUtils.ts │ │ │ │ └── AbilityUtils.ts.meta │ │ ├── base.tsconfig.json │ │ ├── dist │ │ │ └── main.js │ │ ├── i18n │ │ │ ├── en.js │ │ │ └── zh.js │ │ ├── package.json │ │ ├── scripts │ │ │ └── preinstall.js │ │ ├── source │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── core │ │ ├── @types │ │ │ └── schema │ │ │ │ └── package │ │ │ │ ├── base │ │ │ │ └── panels.json │ │ │ │ ├── contributions │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ ├── README.md │ │ ├── README.zh-CN.md │ │ ├── assets │ │ │ ├── runtime.meta │ │ │ └── runtime │ │ │ │ ├── base.meta │ │ │ │ ├── base │ │ │ │ ├── Singleton.ts │ │ │ │ └── Singleton.ts.meta │ │ │ │ ├── common.meta │ │ │ │ ├── common │ │ │ │ ├── D3Lable.ts │ │ │ │ ├── D3Lable.ts.meta │ │ │ │ ├── PersistRootNode.ts │ │ │ │ ├── PersistRootNode.ts.meta │ │ │ │ ├── RotationBody.ts │ │ │ │ ├── RotationBody.ts.meta │ │ │ │ ├── SeedRandom.ts │ │ │ │ ├── SeedRandom.ts.meta │ │ │ │ ├── UID.ts │ │ │ │ ├── UID.ts.meta │ │ │ │ ├── VideoSprite.ts │ │ │ │ └── VideoSprite.ts.meta │ │ │ │ ├── const.meta │ │ │ │ ├── const │ │ │ │ ├── CoreConst.ts │ │ │ │ └── CoreConst.ts.meta │ │ │ │ ├── manager.meta │ │ │ │ ├── manager │ │ │ │ ├── AudioManager.ts │ │ │ │ ├── AudioManager.ts.meta │ │ │ │ ├── EventManager.ts │ │ │ │ ├── EventManager.ts.meta │ │ │ │ ├── LoadManager.ts │ │ │ │ ├── LoadManager.ts.meta │ │ │ │ ├── ResManager.ts │ │ │ │ ├── ResManager.ts.meta │ │ │ │ └── SoundManager.ts.meta │ │ │ │ ├── status.meta │ │ │ │ ├── status │ │ │ │ ├── Status.ts │ │ │ │ └── Status.ts.meta │ │ │ │ ├── task.meta │ │ │ │ ├── task │ │ │ │ ├── SyncTask.ts │ │ │ │ └── SyncTask.ts.meta │ │ │ │ ├── types.meta │ │ │ │ ├── types │ │ │ │ ├── Types.ts │ │ │ │ └── Types.ts.meta │ │ │ │ ├── utils.meta │ │ │ │ └── utils │ │ │ │ ├── ArrayUtils.ts │ │ │ │ ├── ArrayUtils.ts.meta │ │ │ │ ├── DateUtils.ts │ │ │ │ ├── DateUtils.ts.meta │ │ │ │ ├── EditorUtils.ts │ │ │ │ ├── EditorUtils.ts.meta │ │ │ │ ├── MathUtils.ts │ │ │ │ ├── MathUtils.ts.meta │ │ │ │ ├── MatrixUtils.ts │ │ │ │ ├── MatrixUtils.ts.meta │ │ │ │ ├── QuatUtils.ts │ │ │ │ ├── QuatUtils.ts.meta │ │ │ │ ├── RandomUtils.ts │ │ │ │ ├── RandomUtils.ts.meta │ │ │ │ ├── StringUtils.ts │ │ │ │ ├── StringUtils.ts.meta │ │ │ │ ├── VecUtils.ts │ │ │ │ └── VecUtils.ts.meta │ │ ├── base.tsconfig.json │ │ ├── dist │ │ │ └── main.js │ │ ├── i18n │ │ │ ├── en.js │ │ │ └── zh.js │ │ ├── package.json │ │ ├── scripts │ │ │ └── preinstall.js │ │ ├── source │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── dijkstra │ │ ├── @types │ │ │ └── schema │ │ │ │ └── package │ │ │ │ ├── base │ │ │ │ └── panels.json │ │ │ │ ├── contributions │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ ├── README.md │ │ ├── README.zh-CN.md │ │ ├── assets │ │ │ ├── runtime.meta │ │ │ └── runtime │ │ │ │ ├── Dijkstra.ts │ │ │ │ └── Dijkstra.ts.meta │ │ ├── base.tsconfig.json │ │ ├── dist │ │ │ └── main.js │ │ ├── i18n │ │ │ ├── en.js │ │ │ └── zh.js │ │ ├── package.json │ │ ├── scripts │ │ │ └── preinstall.js │ │ ├── source │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── fsm │ │ ├── @types │ │ │ └── schema │ │ │ │ └── package │ │ │ │ ├── base │ │ │ │ └── panels.json │ │ │ │ ├── contributions │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ ├── README.md │ │ ├── README.zh-CN.md │ │ ├── assets │ │ │ ├── runtime.meta │ │ │ └── runtime │ │ │ │ ├── IState.ts │ │ │ │ ├── IState.ts.meta │ │ │ │ ├── IStateMachine.ts │ │ │ │ ├── IStateMachine.ts.meta │ │ │ │ ├── State.ts │ │ │ │ ├── State.ts.meta │ │ │ │ ├── StateMachine.ts │ │ │ │ └── StateMachine.ts.meta │ │ ├── base.tsconfig.json │ │ ├── dist │ │ │ └── main.js │ │ ├── i18n │ │ │ ├── en.js │ │ │ └── zh.js │ │ ├── package.json │ │ ├── scripts │ │ │ └── preinstall.js │ │ ├── source │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── i18n │ │ ├── @types │ │ │ ├── editor.d.ts │ │ │ ├── editor │ │ │ │ ├── app │ │ │ │ │ └── index.d.ts │ │ │ │ ├── clipboard │ │ │ │ │ └── index.d.ts │ │ │ │ ├── dialog │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── public │ │ │ │ │ │ └── interface.d.ts │ │ │ │ ├── edit-mode │ │ │ │ │ └── index.d.ts │ │ │ │ ├── i18n │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── languages │ │ │ │ │ │ ├── en.d.ts │ │ │ │ │ │ └── zh.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── layout │ │ │ │ │ └── index.d.ts │ │ │ │ ├── logger │ │ │ │ │ └── index.d.ts │ │ │ │ ├── menu │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── public │ │ │ │ │ │ └── interface.d.ts │ │ │ │ ├── message │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── public │ │ │ │ │ │ └── interface.d.ts │ │ │ │ ├── metrics │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── public │ │ │ │ │ │ └── interface.d.ts │ │ │ │ ├── network │ │ │ │ │ └── index.d.ts │ │ │ │ ├── package │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── public │ │ │ │ │ │ ├── config.d.ts │ │ │ │ │ │ ├── interface.d.ts │ │ │ │ │ │ └── utils.d.ts │ │ │ │ ├── panel │ │ │ │ │ └── index.d.ts │ │ │ │ ├── profile │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── public │ │ │ │ │ │ ├── config.d.ts │ │ │ │ │ │ └── interface.d.ts │ │ │ │ ├── project │ │ │ │ │ └── index.d.ts │ │ │ │ ├── selection │ │ │ │ │ └── index.d.ts │ │ │ │ ├── startup │ │ │ │ │ └── index.d.ts │ │ │ │ ├── task │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── public │ │ │ │ │ │ └── interface.d.ts │ │ │ │ ├── theme │ │ │ │ │ └── index.d.ts │ │ │ │ ├── ui-kit │ │ │ │ │ └── index.d.ts │ │ │ │ ├── user │ │ │ │ │ └── index.d.ts │ │ │ │ ├── utils │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── source │ │ │ │ │ │ ├── file.d.ts │ │ │ │ │ │ ├── math.d.ts │ │ │ │ │ │ ├── parse.d.ts │ │ │ │ │ │ ├── path.d.ts │ │ │ │ │ │ └── url.d.ts │ │ │ │ └── windows │ │ │ │ │ └── index.d.ts │ │ │ ├── electron.d.ts │ │ │ ├── extension.d.ts │ │ │ ├── index.d.ts │ │ │ ├── message.d.ts │ │ │ └── packages │ │ │ │ ├── asset-db │ │ │ │ └── @types │ │ │ │ │ ├── message.d.ts │ │ │ │ │ └── public.d.ts │ │ │ │ ├── builder │ │ │ │ └── @types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── protect │ │ │ │ │ ├── asset-manager.d.ts │ │ │ │ │ ├── build-plugin.d.ts │ │ │ │ │ ├── build-result.d.ts │ │ │ │ │ ├── global.d.ts │ │ │ │ │ ├── import-map.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── options.d.ts │ │ │ │ │ └── texture-compress.d.ts │ │ │ │ │ └── public │ │ │ │ │ ├── build-plugin.d.ts │ │ │ │ │ ├── build-result.d.ts │ │ │ │ │ ├── global.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── message.d.ts │ │ │ │ │ └── options.d.ts │ │ │ │ ├── console │ │ │ │ └── @types │ │ │ │ │ └── pritate.d.ts │ │ │ │ ├── engine │ │ │ │ └── @types │ │ │ │ │ └── message.d.ts │ │ │ │ ├── preview │ │ │ │ └── @types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── protect │ │ │ │ │ └── index.d.ts │ │ │ │ ├── programming │ │ │ │ └── @types │ │ │ │ │ └── message.d.ts │ │ │ │ ├── scene │ │ │ │ └── @types │ │ │ │ │ ├── message.d.ts │ │ │ │ │ └── public.d.ts │ │ │ │ ├── server │ │ │ │ └── @types │ │ │ │ │ └── package.d.ts │ │ │ │ └── shortcuts │ │ │ │ └── @types │ │ │ │ └── shortcut.d.ts │ │ ├── README.md │ │ ├── assets │ │ │ ├── config.meta │ │ │ ├── config │ │ │ │ ├── de.ts │ │ │ │ ├── de.ts.meta │ │ │ │ ├── en.ts │ │ │ │ ├── en.ts.meta │ │ │ │ ├── es.ts │ │ │ │ ├── es.ts.meta │ │ │ │ ├── fr.ts │ │ │ │ ├── fr.ts.meta │ │ │ │ ├── it.ts │ │ │ │ ├── it.ts.meta │ │ │ │ ├── ja.ts │ │ │ │ ├── ja.ts.meta │ │ │ │ ├── ko.ts │ │ │ │ ├── ko.ts.meta │ │ │ │ ├── pt.ts │ │ │ │ ├── pt.ts.meta │ │ │ │ ├── ru.ts │ │ │ │ ├── ru.ts.meta │ │ │ │ ├── tc.ts │ │ │ │ ├── tc.ts.meta │ │ │ │ ├── vn.ts │ │ │ │ ├── vn.ts.meta │ │ │ │ ├── zh.ts │ │ │ │ └── zh.ts.meta │ │ │ ├── examples.meta │ │ │ ├── examples │ │ │ │ ├── main.scene │ │ │ │ └── main.scene.meta │ │ │ ├── runtime.meta │ │ │ └── runtime │ │ │ │ ├── LanguageData.ts │ │ │ │ ├── LanguageData.ts.meta │ │ │ │ ├── LocalizedLabel.ts │ │ │ │ ├── LocalizedLabel.ts.meta │ │ │ │ ├── LocalizedMaterial.ts │ │ │ │ ├── LocalizedMaterial.ts.meta │ │ │ │ ├── LocalizedSprite.ts │ │ │ │ └── LocalizedSprite.ts.meta │ │ ├── dist │ │ │ ├── main.js │ │ │ ├── panels │ │ │ │ └── default.js │ │ │ ├── parse.js │ │ │ └── scene.js │ │ ├── excel │ │ │ └── language.xlsx │ │ ├── i18n │ │ │ ├── en.js │ │ │ └── zh.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── main.ts │ │ │ ├── panels │ │ │ │ └── default.ts │ │ │ ├── parse.ts │ │ │ └── scene.ts │ │ └── tsconfig.json │ ├── pathfinding │ │ ├── @types │ │ │ └── schema │ │ │ │ └── package │ │ │ │ ├── base │ │ │ │ └── panels.json │ │ │ │ ├── contributions │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ ├── README.md │ │ ├── README.zh-CN.md │ │ ├── assets │ │ │ ├── examples.meta │ │ │ ├── examples │ │ │ │ ├── scenes.meta │ │ │ │ ├── scenes │ │ │ │ │ ├── path.scene │ │ │ │ │ └── path.scene.meta │ │ │ │ ├── scripts.meta │ │ │ │ └── scripts │ │ │ │ │ ├── PathTest.ts │ │ │ │ │ └── PathTest.ts.meta │ │ │ ├── runtime.meta │ │ │ └── runtime │ │ │ │ ├── AStar.ts │ │ │ │ ├── AStar.ts.meta │ │ │ │ ├── BinaryHeap.ts │ │ │ │ ├── BinaryHeap.ts.meta │ │ │ │ ├── PathDefine.ts │ │ │ │ ├── PathDefine.ts.meta │ │ │ │ ├── PathGraph.ts │ │ │ │ ├── PathGraph.ts.meta │ │ │ │ ├── PathStar.ts │ │ │ │ ├── PathStar.ts.meta │ │ │ │ ├── PathUtils.ts │ │ │ │ └── PathUtils.ts.meta │ │ ├── base.tsconfig.json │ │ ├── dist │ │ │ └── main.js │ │ ├── i18n │ │ │ ├── en.js │ │ │ └── zh.js │ │ ├── package.json │ │ ├── scripts │ │ │ └── preinstall.js │ │ ├── source │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── platform │ │ ├── @types │ │ │ ├── schema │ │ │ │ └── package │ │ │ │ │ ├── base │ │ │ │ │ └── panels.json │ │ │ │ │ ├── contributions │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ └── wx │ │ │ │ ├── index.d.ts │ │ │ │ ├── lib.wx.api.d.ts │ │ │ │ └── lib.wx.cloud.d.ts │ │ ├── README.md │ │ ├── README.zh-CN.md │ │ ├── assets │ │ │ ├── runtime.meta │ │ │ └── runtime │ │ │ │ ├── core.meta │ │ │ │ ├── core │ │ │ │ ├── PQIndex.ts │ │ │ │ ├── PQIndex.ts.meta │ │ │ │ ├── base.meta │ │ │ │ ├── base │ │ │ │ │ ├── PQDotInfo.ts │ │ │ │ │ ├── PQDotInfo.ts.meta │ │ │ │ │ ├── PQExpo.ts │ │ │ │ │ ├── PQExpo.ts.meta │ │ │ │ │ ├── PQLogin.ts │ │ │ │ │ ├── PQLogin.ts.meta │ │ │ │ │ ├── PQPay.ts │ │ │ │ │ ├── PQPay.ts.meta │ │ │ │ │ ├── PQPlatform.ts │ │ │ │ │ └── PQPlatform.ts.meta │ │ │ │ ├── entity.meta │ │ │ │ ├── entity │ │ │ │ │ ├── PQConst.ts │ │ │ │ │ ├── PQConst.ts.meta │ │ │ │ │ ├── PQErrorCode.ts │ │ │ │ │ ├── PQErrorCode.ts.meta │ │ │ │ │ ├── PQSystem.ts │ │ │ │ │ ├── PQSystem.ts.meta │ │ │ │ │ ├── PQUser.ts │ │ │ │ │ └── PQUser.ts.meta │ │ │ │ ├── interface.meta │ │ │ │ ├── interface │ │ │ │ │ ├── IPQDotInfo.ts │ │ │ │ │ ├── IPQDotInfo.ts.meta │ │ │ │ │ ├── IPQDotUser.ts │ │ │ │ │ ├── IPQDotUser.ts.meta │ │ │ │ │ ├── IPQExpo.ts │ │ │ │ │ ├── IPQExpo.ts.meta │ │ │ │ │ ├── IPQLogin.ts │ │ │ │ │ ├── IPQLogin.ts.meta │ │ │ │ │ ├── IPQPay.ts │ │ │ │ │ ├── IPQPay.ts.meta │ │ │ │ │ ├── IPQPlatform.ts │ │ │ │ │ ├── IPQPlatform.ts.meta │ │ │ │ │ ├── IPQSystem.ts │ │ │ │ │ ├── IPQSystem.ts.meta │ │ │ │ │ ├── IPQUser.ts │ │ │ │ │ └── IPQUser.ts.meta │ │ │ │ ├── manager.meta │ │ │ │ └── manager │ │ │ │ │ ├── PQExpoManager.ts │ │ │ │ │ ├── PQExpoManager.ts.meta │ │ │ │ │ ├── PQLoginManager.ts │ │ │ │ │ ├── PQLoginManager.ts.meta │ │ │ │ │ ├── PQPlatformManager.ts │ │ │ │ │ ├── PQPlatformManager.ts.meta │ │ │ │ │ ├── PQPlatformSDK.ts │ │ │ │ │ └── PQPlatformSDK.ts.meta │ │ │ │ ├── index.ts │ │ │ │ ├── index.ts.meta │ │ │ │ ├── web.meta │ │ │ │ ├── web │ │ │ │ ├── PQIndex.ts │ │ │ │ ├── PQIndex.ts.meta │ │ │ │ ├── PQWebDotInfo.ts │ │ │ │ ├── PQWebDotInfo.ts.meta │ │ │ │ ├── PQWebLogin.ts │ │ │ │ ├── PQWebLogin.ts.meta │ │ │ │ ├── PQWebPay.ts │ │ │ │ ├── PQWebPay.ts.meta │ │ │ │ ├── PQWebPlatform.ts │ │ │ │ ├── PQWebPlatform.ts.meta │ │ │ │ ├── PQWebVideoExpo.ts │ │ │ │ └── PQWebVideoExpo.ts.meta │ │ │ │ ├── wx.meta │ │ │ │ └── wx │ │ │ │ ├── PQIndex.ts │ │ │ │ ├── PQIndex.ts.meta │ │ │ │ ├── PQVideoExpo.ts │ │ │ │ ├── PQVideoExpo.ts.meta │ │ │ │ ├── PQWxDotInfo.ts │ │ │ │ ├── PQWxDotInfo.ts.meta │ │ │ │ ├── PQWxLogin.ts │ │ │ │ ├── PQWxLogin.ts.meta │ │ │ │ ├── PQWxPay.ts │ │ │ │ ├── PQWxPay.ts.meta │ │ │ │ ├── PQWxPlatform.ts │ │ │ │ └── PQWxPlatform.ts.meta │ │ ├── base.tsconfig.json │ │ ├── dist │ │ │ └── main.js │ │ ├── i18n │ │ │ ├── en.js │ │ │ └── zh.js │ │ ├── package.json │ │ ├── scripts │ │ │ └── preinstall.js │ │ ├── source │ │ │ └── main.ts │ │ └── tsconfig.json │ ├── quadtree │ │ ├── @types │ │ │ └── schema │ │ │ │ └── package │ │ │ │ ├── base │ │ │ │ └── panels.json │ │ │ │ ├── contributions │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ ├── README.md │ │ ├── README.zh-CN.md │ │ ├── assets │ │ │ ├── examples.meta │ │ │ ├── examples │ │ │ │ ├── scenes.meta │ │ │ │ ├── scenes │ │ │ │ │ ├── quadtree.scene │ │ │ │ │ └── quadtree.scene.meta │ │ │ │ ├── scripts.meta │ │ │ │ └── scripts │ │ │ │ │ ├── QuadtreeTest.ts │ │ │ │ │ └── QuadtreeTest.ts.meta │ │ │ ├── runtime.meta │ │ │ └── runtime │ │ │ │ ├── Circle.ts │ │ │ │ ├── Circle.ts.meta │ │ │ │ ├── Line.ts │ │ │ │ ├── Line.ts.meta │ │ │ │ ├── Quadtree.ts │ │ │ │ ├── Quadtree.ts.meta │ │ │ │ ├── Rectangle.ts │ │ │ │ ├── Rectangle.ts.meta │ │ │ │ ├── types.ts │ │ │ │ └── types.ts.meta │ │ ├── base.tsconfig.json │ │ ├── dist │ │ │ └── main.js │ │ ├── i18n │ │ │ ├── en.js │ │ │ └── zh.js │ │ ├── package.json │ │ ├── scripts │ │ │ └── preinstall.js │ │ ├── source │ │ │ └── main.ts │ │ └── tsconfig.json │ └── rvo │ │ ├── @types │ │ └── schema │ │ │ └── package │ │ │ ├── base │ │ │ └── panels.json │ │ │ ├── contributions │ │ │ └── index.json │ │ │ └── index.json │ │ ├── README.md │ │ ├── README.zh-CN.md │ │ ├── assets │ │ ├── examples.meta │ │ ├── examples │ │ │ ├── prefabs.meta │ │ │ ├── prefabs │ │ │ │ ├── rvo.meta │ │ │ │ └── rvo │ │ │ │ │ ├── rvo_role.prefab │ │ │ │ │ └── rvo_role.prefab.meta │ │ │ ├── scenes.meta │ │ │ ├── scenes │ │ │ │ ├── rvo.scene │ │ │ │ └── rvo.scene.meta │ │ │ ├── scripts.meta │ │ │ └── scripts │ │ │ │ ├── RVOTest.ts │ │ │ │ └── RVOTest.ts.meta │ │ ├── runtime.meta │ │ └── runtime │ │ │ ├── Agent.ts │ │ │ ├── Agent.ts.meta │ │ │ ├── KdTree.ts │ │ │ ├── KdTree.ts.meta │ │ │ ├── Line.ts │ │ │ ├── Line.ts.meta │ │ │ ├── Obstacle.ts │ │ │ ├── Obstacle.ts.meta │ │ │ ├── RVOMath.ts │ │ │ ├── RVOMath.ts.meta │ │ │ ├── Simulator.ts │ │ │ ├── Simulator.ts.meta │ │ │ ├── Vector2D.ts │ │ │ └── Vector2D.ts.meta │ │ ├── base.tsconfig.json │ │ ├── dist │ │ └── main.js │ │ ├── i18n │ │ ├── en.js │ │ └── zh.js │ │ ├── package.json │ │ ├── scripts │ │ └── preinstall.js │ │ ├── source │ │ └── main.ts │ │ └── tsconfig.json ├── package-lock.json ├── package.json ├── profiles │ └── v2 │ │ ├── editor │ │ └── packages.json │ │ └── packages │ │ ├── builder.json │ │ ├── device.json │ │ ├── engine.json │ │ ├── program.json │ │ ├── project.json │ │ ├── reference-image.json │ │ ├── scene.json │ │ └── server.json ├── settings │ └── v2 │ │ └── packages │ │ ├── builder.json │ │ ├── cocos-service.json │ │ ├── device.json │ │ ├── engine.json │ │ ├── information.json │ │ ├── program.json │ │ └── project.json └── tsconfig.json ├── README.md └── ShaderLib ├── .creator └── asset-template │ └── typescript │ └── Custom Script Template Help Documentation.url ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── README.md ├── assets ├── avatar.meta ├── avatar │ ├── arc_sprite.effect │ ├── arc_sprite.effect.meta │ ├── arc_sprite.mtl │ ├── arc_sprite.mtl.meta │ ├── arc_sprite.scene │ ├── arc_sprite.scene.meta │ ├── icon.jpg │ └── icon.jpg.meta ├── blur.meta ├── blur │ ├── blur.scene │ ├── blur.scene.meta │ ├── gaussian_blur.effect │ ├── gaussian_blur.effect.meta │ ├── gaussian_blur.mtl │ ├── gaussian_blur.mtl.meta │ ├── icon.jpg │ ├── icon.jpg.meta │ ├── radial_blur.effect │ ├── radial_blur.effect.meta │ ├── radial_blur.mtl │ ├── radial_blur.mtl.meta │ ├── scenery.jpg │ └── scenery.jpg.meta ├── chunks.meta ├── chunks │ ├── noise.chunk │ └── noise.chunk.meta ├── cooldown.meta ├── cooldown │ ├── arc_cd.effect │ ├── arc_cd.effect.meta │ ├── arc_cd.mtl │ ├── arc_cd.mtl.meta │ ├── arc_cd.scene │ ├── arc_cd.scene.meta │ ├── icon.jpg │ ├── icon.jpg.meta │ ├── mask.png │ └── mask.png.meta ├── dissolve.meta ├── dissolve │ ├── dissolve.effect │ ├── dissolve.effect.meta │ ├── dissolve.mtl │ ├── dissolve.mtl.meta │ ├── dissolve.scene │ ├── dissolve.scene.meta │ ├── icon.jpg │ └── icon.jpg.meta ├── dissolveNoise.meta ├── dissolveNoise │ ├── dissolve_noise.effect │ ├── dissolve_noise.effect.meta │ ├── dissolve_noise.mtl │ ├── dissolve_noise.mtl.meta │ ├── dissolve_noise.scene │ ├── dissolve_noise.scene.meta │ ├── icon.jpg │ ├── icon.jpg.meta │ ├── noise.png │ └── noise.png.meta ├── energyEnvelope.meta ├── energyEnvelope │ ├── RT_Scene.rt │ ├── RT_Scene.rt.meta │ ├── RT_Scene_Back.rt │ ├── RT_Scene_Back.rt.meta │ ├── energy_envelope.effect │ ├── energy_envelope.effect.meta │ ├── energy_envelope.scene │ ├── energy_envelope.scene.meta │ ├── energy_envelope_back.mtl │ ├── energy_envelope_back.mtl.meta │ ├── energy_envelope_front.mtl │ ├── energy_envelope_front.mtl.meta │ ├── noise.png │ └── noise.png.meta ├── innerGrow.meta ├── innerGrow │ ├── inner_grow.effect │ ├── inner_grow.effect.meta │ ├── inner_grow.mtl │ ├── inner_grow.mtl.meta │ ├── inner_grow.scene │ └── inner_grow.scene.meta ├── interlude.meta ├── interlude │ ├── back.png │ ├── back.png.meta │ ├── bg.jpg │ ├── bg.jpg.meta │ ├── icon.png │ ├── icon.png.meta │ ├── interlude.effect │ ├── interlude.effect.meta │ ├── interlude.mtl │ ├── interlude.mtl.meta │ ├── interlude.scene │ └── interlude.scene.meta ├── keepOut.meta ├── keepOut │ ├── keep_out.effect │ ├── keep_out.effect.meta │ ├── keep_out.mtl │ ├── keep_out.mtl.meta │ ├── keep_out.scene │ ├── keep_out.scene.meta │ ├── w_color.jpg │ └── w_color.jpg.meta ├── noiseFire.meta ├── noiseFire │ ├── fire.effect │ ├── fire.effect.meta │ ├── fire.mtl │ ├── fire.mtl.meta │ ├── noise_fire.scene │ └── noise_fire.scene.meta ├── noiseWaterDrop.meta ├── noiseWaterDrop │ ├── noise_water_drop.effect │ ├── noise_water_drop.effect.meta │ ├── noise_water_drop.mtl │ ├── noise_water_drop.mtl.meta │ ├── noise_water_drop.scene │ ├── noise_water_drop.scene.meta │ ├── w_color.jpg │ └── w_color.jpg.meta ├── outerGrow.meta ├── outerGrow │ ├── outer_grow.effect │ ├── outer_grow.effect.meta │ ├── outer_grow.mtl │ ├── outer_grow.mtl.meta │ ├── outer_grow.scene │ └── outer_grow.scene.meta ├── scripts.meta ├── scripts │ ├── Game.ts │ └── Game.ts.meta ├── sketch.meta ├── sketch │ ├── scenery.jpg │ ├── scenery.jpg.meta │ ├── sketch.effect │ ├── sketch.effect.meta │ ├── sketch.mtl │ ├── sketch.mtl.meta │ ├── sketch.scene │ └── sketch.scene.meta ├── sweepLight.meta ├── sweepLight │ ├── icon.jpg │ ├── icon.jpg.meta │ ├── sweep_light.effect │ ├── sweep_light.effect.meta │ ├── sweep_light.mtl │ ├── sweep_light.mtl.meta │ ├── sweep_light.scene │ └── sweep_light.scene.meta ├── water.meta ├── water │ ├── DepthMapSetter.ts │ ├── DepthMapSetter.ts.meta │ ├── depthTexture.rt │ ├── depthTexture.rt.meta │ ├── texture.meta │ ├── texture │ │ ├── PerlinNoise.png │ │ ├── PerlinNoise.png.meta │ │ ├── WaterDistortion.png │ │ └── WaterDistortion.png.meta │ ├── water.effect │ ├── water.effect.meta │ ├── water.mtl │ ├── water.mtl.meta │ ├── water.scene │ └── water.scene.meta ├── wave.meta └── wave │ ├── icon.jpg │ ├── icon.jpg.meta │ ├── vave_sprite.mtl │ ├── vave_sprite.mtl.meta │ ├── wave_sprite.effect │ ├── wave_sprite.effect.meta │ ├── wave_sprite.scene │ └── wave_sprite.scene.meta ├── image ├── keep_out.jpg ├── noise_fire.jpg └── noise_water_drop.jpg ├── package.json ├── profiles └── v2 │ ├── editor │ └── packages.json │ └── packages │ ├── builder.json │ ├── device.json │ ├── engine.json │ ├── program.json │ ├── project.json │ ├── reference-image.json │ ├── scene.json │ └── server.json ├── settings └── v2 │ └── packages │ ├── builder.json │ ├── cocos-service.json │ ├── device.json │ ├── engine.json │ ├── information.json │ ├── program.json │ └── project.json └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=TypeScript 2 | *.bat text eol=crlf -------------------------------------------------------------------------------- /BaseProject/CoreProject/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bin/ 3 | release/ 4 | libs/ 5 | build/ 6 | build-script/ 7 | -------------------------------------------------------------------------------- /BaseProject/CoreProject/.prettierignore: -------------------------------------------------------------------------------- 1 | **/.vscode 2 | bin/ 3 | README.md 4 | -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/data/systemConfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "iPhone X": {"width": 750, "height": 1624, "alignH": "center", "alignV": "middle"} 3 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/data/systemConfig.json.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.2", 3 | "uuid": "2c37ac89-e649-450f-bb94-54a5f541f41e", 4 | "importer": "json", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/resource.json.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.2", 3 | "uuid": "9f91bd57-c75b-436d-990a-e3f7f0060901", 4 | "importer": "json", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/bag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreProject/assets/resources/ui/bag.bin -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/bag.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.2", 3 | "uuid": "17ea3580-6a6e-49ce-9b4b-62f6e15eb80a", 4 | "importer": "buffer", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/bag_atlas0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreProject/assets/resources/ui/bag_atlas0.png -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/main.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreProject/assets/resources/ui/main.bin -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/main.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.2", 3 | "uuid": "5e5cdca4-d0f8-47f5-b6c2-5f4f9b0b447f", 4 | "importer": "buffer", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/main_atlas0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreProject/assets/resources/ui/main_atlas0.png -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/preload.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreProject/assets/resources/ui/preload.bin -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/preload.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.2", 3 | "uuid": "5d59a93e-09ce-48c0-9305-36e3b284d831", 4 | "importer": "buffer", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/preload_atlas0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreProject/assets/resources/ui/preload_atlas0.png -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/uiShare.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreProject/assets/resources/ui/uiShare.bin -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/resources/ui/uiShare.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.2", 3 | "uuid": "e2fd683a-9af1-482e-80b7-4712c7a9d075", 4 | "importer": "buffer", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/scene/App.fire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.3.2", 3 | "uuid": "9aca4acc-14c4-4e43-983c-99f63df9d762", 4 | "importer": "scene", 5 | "asyncLoadAssets": false, 6 | "autoReleaseAssets": false, 7 | "subMetas": {} 8 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/script/config/AppConfig.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "d0ed64f3-28cf-437c-9395-7a24e2495c12", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/script/core/App.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "8345beac-7453-4cb3-9226-0232dd19c97d", 4 | "importer": "typescript", 5 | "isPlugin": false, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": false, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/script/core/mvc/BaseViewData.ts: -------------------------------------------------------------------------------- 1 | /* 2 | * @Author: yanmingjie0223@qq.com 3 | * @Date: 2019-01-17 10:59:19 4 | * @Last Modified by: yanmingjie0223@qq.com 5 | * @Last Modified time: 2019-01-23 20:01:20 6 | */ 7 | export default class BaseViewData { 8 | 9 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/script/libs/fairygui.d.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "89d974bc-9487-4002-a55b-6506cc47b704", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/script/libs/fairygui.js.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.0", 3 | "uuid": "04bda024-49c3-4a94-b484-0134f0e08c66", 4 | "importer": "javascript", 5 | "isPlugin": true, 6 | "loadPluginInWeb": true, 7 | "loadPluginInNative": true, 8 | "loadPluginInEditor": true, 9 | "subMetas": {} 10 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/assets/script/libs/wx.d.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "2.0.2", 3 | "uuid": "4f93c567-8447-42c0-afe7-1aea1d9bba6d", 4 | "importer": "text", 5 | "subMetas": {} 6 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/build-templates/web-mobile/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreProject/build-templates/web-mobile/splash.png -------------------------------------------------------------------------------- /BaseProject/CoreProject/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "engine": "cocos-creator-js", 3 | "packages": "packages", 4 | "name": "core", 5 | "id": "c91b6cdf-55e5-4e49-82f5-670035a4d363", 6 | "version": "2.4.14", 7 | "isNew": false 8 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/settings/builder.panel.json: -------------------------------------------------------------------------------- 1 | { 2 | "excludeScenes": [], 3 | "packageName": "org.cocos2d.helloworld", 4 | "platform": "web-mobile", 5 | "startScene": "2d2f792f-a40c-49bb-a189-ed176a246e49", 6 | "title": "HelloWorld" 7 | } -------------------------------------------------------------------------------- /BaseProject/CoreProject/settings/services.json: -------------------------------------------------------------------------------- 1 | { 2 | "game": { 3 | "name": "未知游戏", 4 | "appid": "UNKNOW" 5 | } 6 | } -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/CoreUiProject.fairy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/assets/bag/image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreUiProject/assets/bag/image/1.png -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/assets/bag/image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreUiProject/assets/bag/image/2.png -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/assets/bag/image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreUiProject/assets/bag/image/3.png -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/assets/bag/image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreUiProject/assets/bag/image/4.png -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/assets/bag/image/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreUiProject/assets/bag/image/5.png -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/assets/bag/image/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreUiProject/assets/bag/image/8.png -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/assets/main/image/bagIm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreUiProject/assets/main/image/bagIm.png -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/assets/preload/image/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreUiProject/assets/preload/image/bar.png -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/assets/preload/image/barBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreUiProject/assets/preload/image/barBg.png -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/assets/preload/image/wBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject/CoreUiProject/assets/preload/image/wBg.png -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/settings/Adaptation.json: -------------------------------------------------------------------------------- 1 | { 2 | "scaleMode": "ScaleWithScreenSize", 3 | "screenMathMode": "MatchWidthOrHeight", 4 | "designResolutionX": 750, 5 | "designResolutionY": 1334, 6 | "devices": [], 7 | "fileName": "Adaptation" 8 | } -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/settings/CustomProperties.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /BaseProject/CoreUiProject/settings/i18n.json: -------------------------------------------------------------------------------- 1 | { 2 | "langFiles": [] 3 | } -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/.creator/asset-template/typescript/Custom Script Template Help Documentation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://docs.cocos.com/creator/manual/en/scripting/setup.html#custom-script-template -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bin/ 3 | release/ 4 | libs/ 5 | build/ 6 | build-script/ 7 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.bat eol=crlf 3 | *.cmd eol=crlf 4 | *.js eol=lf 5 | *.ts eol=lf 6 | *.json eol=lf 7 | *.md eol=lf 8 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/.prettierignore: -------------------------------------------------------------------------------- 1 | **/.vscode 2 | bin/ 3 | README.md 4 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/dynamic/data.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "c04ec00e-cb1b-46d0-8435-36ffc5e98f02", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/dynamic/data/ncb_tbglobal.bin: -------------------------------------------------------------------------------- 1 |  TestCount10 -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/dynamic/data/ncb_tbglobal.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "e9177949-583b-413f-981a-b1b984dfe40b", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/dynamic/main.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ffb4744c-2fe3-4797-9bf3-97a5580a7886", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "fc3e0bab-30e1-4b55-8095-c3ab3c417f71", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/scene/App.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "2d476d8f-9723-40c9-972e-d965666a81a9", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d713568f-385d-4d28-b51a-3ae09102cbdf", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/config.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "eb24b830-2dc1-46ab-b3cf-70568ebe8627", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/config/AppConfig.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "75142073-b2db-42ea-adc8-c6ad7ae6fcb1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1a3de819-c58a-4fd9-a28f-16262f22ef4c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/App.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "7d6738ba-f78b-4a94-b450-2677f9737572", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/AppEntry.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "bdd351c5-7002-4075-bf01-d31491ee1745", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/base.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "0213a540-6cdb-4094-80e5-25c6e813f94f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/base/Singleton.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "109c43a6-8b38-4d79-8f00-9c347a1483dc", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/components.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "063acbe7-88ea-4ffa-ad73-2cab673e632d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/components/D3Lable.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ff613b9e-559b-4424-a94b-9d05a5c55bb8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/components/PersistRootNode.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f889321f-0c23-4173-ac58-aab99f71533f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/components/RotationBody.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "de5d0fe5-b271-4892-85b4-0a82d4907a31", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/components/SeedRandom.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "39c2993d-4623-4666-b26c-eadfb718503b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/components/UID.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "80192d49-629a-4aa8-bdbc-ed326c6a6ced", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/components/VideoSprite.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "912d8fec-0025-4689-a262-803420031eb9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/const.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "770abe27-550c-446d-8af4-708f4d5294fe", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/const/ViewConst.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "48f1f412-0614-48f2-8827-c0f34f1e4f4b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/manager.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "0b529f13-223f-4b39-9cb7-1810e87e0e6c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/manager/AudioManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "0ae70703-f1e1-47ee-9a51-d3438d0de4a1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/manager/ConfigManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "02082ecb-52e7-4419-8964-f762bdc8d883", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/manager/EventManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "626f5cae-7a73-4c6a-950c-a822e393fa89", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/manager/LayerManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "624b0726-5c1c-4805-80ff-2b8d077d8575", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/manager/LoadManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "04bcea61-8639-42f9-a999-5a9f50c90562", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/manager/ModelManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "9eba5435-2fe1-46d5-be8c-c6f293f38eb4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/manager/ResManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "14e9fb1c-adf0-41d9-92b1-612b5e2f0479", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/manager/StageManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f23d5a47-2380-4e1b-a7d8-7d1b1aeb5d19", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/manager/ViewManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "7b6c10a3-280a-4b1a-b488-381e99832354", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/mvc.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "898ce0f3-7cbe-4793-91ef-e4dda0574e19", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/mvc/BaseCtrl.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "d276fc56-94bc-44d4-b5aa-53d377eb5ba4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/mvc/BaseModel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "d9a8570f-607e-4a8b-b884-a2c11258e41b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/mvc/BaseView.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "5af36472-3793-4ae1-b05b-8d99daebe539", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/mvc/BaseViewData.ts: -------------------------------------------------------------------------------- 1 | export default class BaseViewData { 2 | 3 | public destroy(): void { } 4 | 5 | } -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/mvc/BaseViewData.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6704f8b7-afa0-43d7-b83a-cbe987c84d6b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/types.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d2df6cfc-4180-4364-a094-18532bb059c4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/types/Types.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "967c2a2b-f68b-49c8-89e5-3f4cc19a6615", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "9e75875c-76f0-4d33-999e-afa0477bda1a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/ArrayUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6474baa5-a636-4050-b92e-eafb3f815e31", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/DateUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ac4998a4-6f84-4fbd-9b27-65f3429d8d40", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/DebugUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "7044071a-62e4-4f8f-90ef-639c07440cf2", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/DisplayUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ed8d9735-81c9-45aa-9dba-11c3325e31fd", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/EditorUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "145c086f-65e1-4306-a084-368bac86be53", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/EffectUtils.ts: -------------------------------------------------------------------------------- 1 | import Singleton from "../base/Singleton"; 2 | 3 | export default class EffectUtils extends Singleton { 4 | 5 | 6 | } -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/EffectUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "415fb39b-8b8f-4362-9917-efabf53c70dd", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/MathUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "0c6a755c-8725-40df-9332-ccb9a1213a2c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/MatrixUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "d3bf9c3c-7f78-4db6-b4f9-ed72cdea247c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/QuatUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "856a9edc-df84-4050-a973-9015b5afef98", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/RandomUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6e30ea51-1881-4691-9ee5-56ce81d8f743", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/StringUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "15217a76-e0f7-452d-9091-62f2e898237a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/UrlUtils.ts: -------------------------------------------------------------------------------- 1 | export class UrlUtils { 2 | public static bundleName: string = 'dynamic'; 3 | public static data: string = 'data'; 4 | public static ui: string = "ui"; 5 | } 6 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/UrlUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "1a1c0058-3f4c-4b2e-84fd-8264f015cab9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/core/utils/VecUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "24095ece-2de0-44d1-af56-000cceea8918", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/luban.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "38140583-fc5e-4e72-afea-27ec70222941", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/luban/bright.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "93cbd460-98e9-4849-9629-6606e9ce87b8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/luban/bright/serialization.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1925ca22-3810-416d-b14c-4e11452eaeaf", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/luban/bright/serialization/ByteBuf.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "547c38d1-76a2-4bee-9000-29c96b2a7958", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/luban/code.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a70136be-f614-47fd-83e4-e08f7f082946", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/luban/code/schema.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6ab57280-170d-401b-9b5b-855f30ccdda9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/module.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ab69f80f-b781-44aa-8531-ba85fd2b3e19", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/module/main.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b5d52bc3-3d9d-4473-97e1-945af533e409", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/assets/script/module/main/MainView.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "12417986-5073-43ec-8bd6-108ff34a1daa", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/preview-template/version.json: -------------------------------------------------------------------------------- 1 | {"name":"ccc-devtools","version":"2022/12/11","author":"Next","repo":"https://github.com/potato47/ccc-devtools.git"} -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/profiles/v2/editor/packages.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/profiles/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.3.9", 3 | "log": { 4 | "level": 4 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/profiles/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/profiles/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.10" 3 | } 4 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/profiles/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.4" 3 | } 4 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/profiles/v2/packages/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.6" 3 | } 4 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/profiles/v2/packages/reference-image.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.0", 3 | "config": { 4 | "images": [], 5 | "sceneUUID": {}, 6 | "scene": "2d476d8f-9723-40c9-972e-d965666a81a9" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/profiles/v2/packages/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.0", 3 | "server_port": 7456 4 | } 5 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/settings/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.3.9" 3 | } 4 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/settings/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/settings/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.10" 3 | } 4 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/settings/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.4" 3 | } 4 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/CommandLine.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/ExcelDataReader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/ExcelDataReader.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Google.Protobuf.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Bson.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Bson.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Bson.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.CSharp.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.CSharp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.CSharp.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Core.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Core.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Cpp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Cpp.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Cpp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Cpp.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.DataLoader.Builtin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.DataLoader.Builtin.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.DataLoader.Builtin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.DataLoader.Builtin.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.DataTarget.Builtin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.DataTarget.Builtin.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.DataTarget.Builtin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.DataTarget.Builtin.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.DataValidator.Builtin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.DataValidator.Builtin.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.DataValidator.Builtin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.DataValidator.Builtin.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.FlatBuffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.FlatBuffers.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.FlatBuffers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.FlatBuffers.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Gdscript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Gdscript.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Gdscript.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Gdscript.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Golang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Golang.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Golang.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Golang.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Java.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Java.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Java.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Java.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.L10N.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.L10N.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.L10N.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.L10N.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Lua.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Lua.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Lua.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.MsgPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.MsgPack.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.MsgPack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.MsgPack.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.PHP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.PHP.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.PHP.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.PHP.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Protobuf.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Protobuf.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Protobuf.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Python.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Python.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Python.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Python.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Rust.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Rust.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Rust.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Rust.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Schema.Builtin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Schema.Builtin.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Schema.Builtin.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Schema.Builtin.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Typescript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Typescript.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.Typescript.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.Typescript.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.exe -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Luban.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Luban.pdb -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/MessagePack.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/MessagePack.Annotations.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/MessagePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/MessagePack.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Microsoft.NET.StringTools.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Microsoft.NET.StringTools.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/NLog.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Neo.Lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Neo.Lua.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Scriban.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Scriban.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Templates/common/php/enum.sbn: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Templates/common/ts/enum.sbn: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/Ude.NetStandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/Ude.NetStandard.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/YamlDotNet.NetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/YamlDotNet.NetCore.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/Luban/de/Neo.Lua.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/Luban/de/Neo.Lua.resources.dll -------------------------------------------------------------------------------- /BaseProject3X/BaseProject3X/tools/protoc/bin/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/BaseProject3X/tools/protoc/bin/protoc.exe -------------------------------------------------------------------------------- /BaseProject3X/Design/Datas/__beans__.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/Design/Datas/__beans__.xlsx -------------------------------------------------------------------------------- /BaseProject3X/Design/Datas/__enums__.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/Design/Datas/__enums__.xlsx -------------------------------------------------------------------------------- /BaseProject3X/Design/Datas/__tables__.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/Design/Datas/__tables__.xlsx -------------------------------------------------------------------------------- /BaseProject3X/Design/Datas/global.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/BaseProject3X/Design/Datas/global.xlsx -------------------------------------------------------------------------------- /ElectronWindow/CreatorMessage/.creator/asset-template/typescript/Custom Script Template Help Documentation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://docs.cocos.com/creator/manual/en/scripting/setup.html#custom-script-template -------------------------------------------------------------------------------- /ElectronWindow/CreatorMessage/assets/Test.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "0bf665a8-c2f0-4065-b090-b0f75e62820e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /ElectronWindow/CreatorMessage/assets/main.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "498912f6-7164-4489-a9b7-6c229f9fbaa1", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ElectronWindow/CreatorMessage/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CreatorMessage", 3 | "uuid": "8a30249c-0d8d-4291-83fa-7da2b7220d4f", 4 | "creator": { 5 | "version": "3.8.5" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /ElectronWindow/CreatorMessage/settings/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.3.9" 3 | } 4 | -------------------------------------------------------------------------------- /ElectronWindow/CreatorMessage/settings/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /ElectronWindow/CreatorMessage/settings/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.10" 3 | } 4 | -------------------------------------------------------------------------------- /ElectronWindow/CreatorMessage/settings/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.4" 3 | } 4 | -------------------------------------------------------------------------------- /ElectronWindow/CreatorMessage/settings/v2/packages/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "general": { 3 | "highQuality": true 4 | }, 5 | "__version__": "1.0.6", 6 | "fbx": { 7 | "legacyFbxImporter": { 8 | "visible": true 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /ElectronWindow/CreatorMessage/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | /* Base configuration. Do not edit this field. */ 3 | "extends": "./temp/tsconfig.cocos.json", 4 | 5 | /* Add your custom configuration here. */ 6 | "compilerOptions": { 7 | "strict": false 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/assets/main/import/04/04385752e.json: -------------------------------------------------------------------------------- 1 | {"type":"cc.Texture2D","data":[["2,2,2,2,0,0",["54TknWPwVPqJqeCR+Y/Czo"]],["2,2,2,2,0,0",["20g1ukYUVPvKWKBRznAKo+"]],["2,2,2,2,0,0",["95EkngnxZFbYuFpsqVTaFr"]],["2,2,2,2,0,0",["bdG8q6vX1KcbFDmXyII4Pk"]]]} 2 | -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/assets/main/import/20/20835ba4-6145-4fbc-a58a-051ce700aa3e.json: -------------------------------------------------------------------------------- 1 | [1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]] 2 | -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/assets/main/import/54/544e49d6-3f05-4fa8-9a9e-091f98fc2ce8.json: -------------------------------------------------------------------------------- 1 | [1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]] 2 | -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/assets/main/import/95/951249e0-9f16-456d-8b85-a6ca954da16b.json: -------------------------------------------------------------------------------- 1 | [1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]] 2 | -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/assets/main/import/bd/bd1bcaba-bd7d-4a71-b143-997c882383e4.json: -------------------------------------------------------------------------------- 1 | [1,0,0,["cc.ImageAsset"],0,[{"fmt":"0","w":0,"h":0},-1],[0],0,[],[],[]] 2 | -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/assets/main/native/20/20835ba4-6145-4fbc-a58a-051ce700aa3e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ElectronWindow/ElectronBuildWindow/public/assets/main/native/20/20835ba4-6145-4fbc-a58a-051ce700aa3e.png -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/assets/main/native/54/544e49d6-3f05-4fa8-9a9e-091f98fc2ce8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ElectronWindow/ElectronBuildWindow/public/assets/main/native/54/544e49d6-3f05-4fa8-9a9e-091f98fc2ce8.png -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/assets/main/native/95/951249e0-9f16-456d-8b85-a6ca954da16b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ElectronWindow/ElectronBuildWindow/public/assets/main/native/95/951249e0-9f16-456d-8b85-a6ca954da16b.png -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/assets/main/native/bd/bd1bcaba-bd7d-4a71-b143-997c882383e4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ElectronWindow/ElectronBuildWindow/public/assets/main/native/bd/bd1bcaba-bd7d-4a71-b143-997c882383e4.png -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/cocos-js/assets/bullet.release.wasm-BWZhVGCB.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ElectronWindow/ElectronBuildWindow/public/cocos-js/assets/bullet.release.wasm-BWZhVGCB.wasm -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/cocos-js/assets/spine-u3j38j0v.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ElectronWindow/ElectronBuildWindow/public/cocos-js/assets/spine-u3j38j0v.wasm -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/cocos-js/assets/spine.js.mem-1a7qSucW.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ElectronWindow/ElectronBuildWindow/public/cocos-js/assets/spine.js.mem-1a7qSucW.bin -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/cocos-js/bullet.release.wasm-vGDNSL-o.js: -------------------------------------------------------------------------------- 1 | System.register([],(function(e){"use strict";return{execute:function(){e("default","assets/bullet.release.wasm-BWZhVGCB.wasm")}}})); 2 | -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/cocos-js/spine-Ubv7RmXU.js: -------------------------------------------------------------------------------- 1 | System.register([],(function(e){"use strict";return{execute:function(){e("default","assets/spine-u3j38j0v.wasm")}}})); 2 | -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/cocos-js/spine.js-DNSIZkQO.js: -------------------------------------------------------------------------------- 1 | System.register([],(function(e){"use strict";return{execute:function(){e("default","assets/spine.js.mem-1a7qSucW.bin")}}})); 2 | -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/src/effect.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ElectronWindow/ElectronBuildWindow/public/src/effect.bin -------------------------------------------------------------------------------- /ElectronWindow/ElectronBuildWindow/public/src/import-map.json: -------------------------------------------------------------------------------- 1 | {"imports":{"cc":"./../cocos-js/cc.js"}} -------------------------------------------------------------------------------- /Extensions/.creator/asset-template/typescript/Custom Script Template Help Documentation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://docs.cocos.com/creator/manual/en/scripting/setup.html#custom-script-template -------------------------------------------------------------------------------- /Extensions/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bin/ 3 | release/ 4 | libs/ 5 | build/ 6 | build-script/ 7 | -------------------------------------------------------------------------------- /Extensions/.prettierignore: -------------------------------------------------------------------------------- 1 | **/.vscode 2 | bin/ 3 | README.md 4 | -------------------------------------------------------------------------------- /Extensions/README.md: -------------------------------------------------------------------------------- 1 | # CocosCreator 2 | 3 | - ability 4 | - 技能 5 | - core 6 | - 主核心 7 | - dijkstra 8 | - dijkstra最短图 9 | - fsm 10 | - 状态机 11 | - i18n 12 | - 多语言本地化插件 13 | - pathfinding 14 | - a*路径 15 | - platform 16 | - 平台 17 | - quadtree 18 | - 四叉树 19 | - rvo 20 | - 避障 -------------------------------------------------------------------------------- /Extensions/assets/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "97968bfa-5942-4eee-b6cf-eeb171feda10", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/assets/scripts/Test.ts: -------------------------------------------------------------------------------- 1 | import { _decorator, Component, Node } from 'cc'; 2 | const { ccclass, property } = _decorator; 3 | 4 | @ccclass('Test') 5 | export class Test extends Component { 6 | start() { 7 | } 8 | 9 | update(deltaTime: number) { 10 | 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Extensions/assets/scripts/Test.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "9d96ed63-58b2-46b2-bd05-5166ae689a44", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/README.md: -------------------------------------------------------------------------------- 1 | # Project Title 2 | 3 | An blank extension. 4 | 5 | ## Install 6 | 7 | ```bash 8 | # Install dependent modules 9 | npm install 10 | # build 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/README.zh-CN.md: -------------------------------------------------------------------------------- 1 | # 项目简介 2 | 3 | 一份空白的扩展。 4 | 5 | ## 安装 6 | 7 | ```bash 8 | # 安装依赖模块 9 | npm install 10 | # 构建 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f0e143db-7316-4501-a77f-ab051675b869", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/Ability.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "88a39c98-7d5c-4838-8082-e245e11d5272", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/AbilityAttack.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "8930acd7-cd9e-41a6-bb5a-a57193c98614", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/AbilityCallback.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "2f84898a-9843-4220-9229-79e30c63d618", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/AbilityData.ts: -------------------------------------------------------------------------------- 1 | export class AbilityData { 2 | public destroy(): void {} 3 | } 4 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/AbilityData.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "5db779ef-bf71-4d07-811d-0a7bf7d30219", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/AbilityEffect.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c66a8cdd-3241-4dba-a4bc-c3b38cb103d8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/AbilityParse.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "49dc1104-279d-4262-bc22-cc63bf42481e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/AbilityPool.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "8897a5ef-1298-4e57-9c5c-3e44bf307241", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/AbilitySound.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "23dd6954-ccfd-4a59-8f15-b10bad01e9cb", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/AbilityStats.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "20fc7c99-aacc-45cb-8d19-50e0ac39ed71", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/AbilitySystem.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "8b4854bb-e5c3-481e-9509-8af1d1c49107", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/ISkillStruct.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ba27c47a-df59-4003-8ed7-9636f84e8afc", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/common.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a00e891d-8f0d-45e4-902e-0625e8685cd1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "92513bf9-afca-48aa-a4cc-4e451c91fca5", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/Const.ts: -------------------------------------------------------------------------------- 1 | /**现实/逻辑帧的比例 */ 2 | export const FPS_RATE: number = 2; 3 | /**逻辑帧时间帧时间 */ 4 | export const FRAM_TIME: number = 0.016; 5 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/Const.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c3b02a9b-e8d0-4bf4-b687-843534371d9e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/ISyncs.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "b022b701-ba26-414d-a160-2e1ecd19e072", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/MathUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "45954cbb-8f6e-402c-bf7e-022790eefb3a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/MatrixUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ca48f904-2cd2-4011-8aa3-59c6054adb28", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/RandomUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "1125d6d1-dcba-4851-8ec4-05b378f77e4e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/SeedRandom.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6272f42f-c502-4367-8893-299f6ba50025", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/Singleton.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ccbae8c8-58f9-4753-9351-1d8d5d68af4b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/Status.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "872b5dd1-9823-4fd8-bdfb-f7f5abd5faa2", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/Types.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "967c2a2b-f68b-49c8-89e5-3f4cc19a6615", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/UID.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "84b3e842-cd0b-4c3d-8bb7-8356832c62ac", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/frame/VecUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ac745022-56f1-494d-9231-eccc5338a3a2", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/implements/10xxx.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "a3c161bf-ab7c-4f8b-a6f9-8bc5ea9160d9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/implements/20xxx.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "1e358342-16e4-4d1e-95b6-c759888b0a77", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/implements/30xxx.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "4cf07c8d-c5e0-4ca8-9d7a-4a64db9f18a2", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/implements/31xxx.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "4e3ce7f6-1484-4416-af9b-a280b3e20060", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/implements/index.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "4d875efa-ea2c-4258-acfa-57f61b813949", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/interface/Const.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6b276826-54a8-4044-8144-ded58151ca18", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/interface/IBase.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "26130508-24af-4943-9897-90b2e502019f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/interface/IStruct.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f0cd82d3-c98e-43a7-b470-d6b3d5fc14bf", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/utils/AbilityCreateUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "48434da0-6800-48a1-a32d-2fc2f0a03fc6", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/utils/AbilityEffectUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "efbc7298-4e3f-42ff-9be6-c43b5464101b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/utils/AbilityFormulaUtils.ts: -------------------------------------------------------------------------------- 1 | export class AbilityFormulaUtils { } 2 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/utils/AbilityFormulaUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "9250ccdc-0289-4258-8671-54ff77614fe3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/utils/AbilityTargetUtils.ts: -------------------------------------------------------------------------------- 1 | export class AbilityTargetUtils { } 2 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/utils/AbilityTargetUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "48958809-b09b-40de-8018-606e13e5b68a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/assets/runtime/utils/AbilityUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "a8174d1c-bacf-42df-beb4-48077e88b2c9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/ability/i18n/en.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"A blank extension",show_log:"Output log"}; -------------------------------------------------------------------------------- /Extensions/extensions/ability/i18n/zh.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"一份空白的扩展",show_log:"输出日志"}; -------------------------------------------------------------------------------- /Extensions/extensions/core/README.md: -------------------------------------------------------------------------------- 1 | # Project Title 2 | 3 | An blank extension. 4 | 5 | ## Install 6 | 7 | ```bash 8 | # Install dependent modules 9 | npm install 10 | # build 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/core/README.zh-CN.md: -------------------------------------------------------------------------------- 1 | # 项目简介 2 | 3 | 一份空白的扩展。 4 | 5 | ## 安装 6 | 7 | ```bash 8 | # 安装依赖模块 9 | npm install 10 | # 构建 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1c3bc690-4433-4ac0-88b8-6c75c7f2a5da", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/base.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "4ea41e7d-27cd-429d-ae31-97fe83d43579", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/base/Singleton.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ccbae8c8-58f9-4753-9351-1d8d5d68af4b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/common.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1e2e7394-7af9-4178-a9a3-50aaf3923069", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/common/D3Lable.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "e09a57e7-1a67-427a-8eed-aa716044a63d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/common/PersistRootNode.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "4b7185aa-4b49-4f4a-be1a-1e02fee2e3e5", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/common/RotationBody.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "04e73b80-92db-4c62-92fe-63b0fa536dfa", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/common/SeedRandom.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6272f42f-c502-4367-8893-299f6ba50025", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/common/UID.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "84b3e842-cd0b-4c3d-8bb7-8356832c62ac", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/common/VideoSprite.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "fc56f1e2-f6b1-4ac2-ac1b-caa46f1cea5d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/const.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "286d5cc7-9150-4146-bbc2-b1dd09a68e27", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/const/CoreConst.ts: -------------------------------------------------------------------------------- 1 | import { Asset } from 'cc'; 2 | 3 | export interface ResFile { 4 | url: string; 5 | bundle: string; 6 | title?: string; 7 | type: new (...args: any[]) => Asset; 8 | } 9 | 10 | export class DirAsset extends Asset { } 11 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/const/CoreConst.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "177a5409-a9a1-480e-a525-3ef17459a06e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/manager.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "9772707f-3045-4a5c-9366-4013a8d10e1b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/manager/AudioManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c08eca66-0b72-4913-814b-7c958c1f4826", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/manager/EventManager.ts: -------------------------------------------------------------------------------- 1 | import { EventTarget } from 'cc'; 2 | export const eventManager = new EventTarget(); 3 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/manager/EventManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c527fd12-8515-4e9e-9cb8-7e1fb74a76d0", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/manager/LoadManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "8ea4954d-0505-417f-a382-f70208cb2c57", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/manager/ResManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "1d582538-e60b-4ffb-af2d-8a0946682310", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/manager/SoundManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "11bf6e7d-f484-416c-a784-2b53af3c3729", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/status.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d9af0b6a-7f30-4653-82a2-cd9eed201373", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/status/Status.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c7e1acaf-1c40-428d-83d1-cb2580fd035b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/task.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "601c78dd-82e2-40de-a006-80acbfe18d67", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/task/SyncTask.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "a39128a8-29a5-4ef2-a296-fbe40b138583", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/types.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "042f44f6-a50f-43f0-b4a0-f70f7d3927b3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/types/Types.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "967c2a2b-f68b-49c8-89e5-3f4cc19a6615", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/utils.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1efa5c4d-ba25-4812-8db7-26b5f5c3c03e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/utils/ArrayUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "b3d7c8db-9380-4c99-a0bb-6ec2d62ac028", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/utils/DateUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "7b6066f5-cd2b-4630-aa50-19290649e07e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/utils/EditorUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "044219d9-754b-4c05-a837-c4a02d868f31", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/utils/MathUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "45954cbb-8f6e-402c-bf7e-022790eefb3a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/utils/MatrixUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ca48f904-2cd2-4011-8aa3-59c6054adb28", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/utils/QuatUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "bc2397fe-ceb1-4315-9aaa-11674359215e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/utils/RandomUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "1125d6d1-dcba-4851-8ec4-05b378f77e4e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/utils/StringUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f6b74441-c48a-42f9-9c39-d73d8e2bd108", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/assets/runtime/utils/VecUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ac745022-56f1-494d-9231-eccc5338a3a2", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/core/dist/main.js: -------------------------------------------------------------------------------- 1 | "use strict";function load(){}function unload(){}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unload=exports.load=exports.methods=void 0,exports.methods={showLog(){console.log("Hello World")}},exports.load=load,exports.unload=unload; -------------------------------------------------------------------------------- /Extensions/extensions/core/i18n/en.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"A blank extension",show_log:"Output log"}; -------------------------------------------------------------------------------- /Extensions/extensions/core/i18n/zh.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"一份空白的扩展",show_log:"输出日志"}; -------------------------------------------------------------------------------- /Extensions/extensions/dijkstra/README.md: -------------------------------------------------------------------------------- 1 | # Project Title 2 | 3 | An blank extension. 4 | 5 | ## Install 6 | 7 | ```bash 8 | # Install dependent modules 9 | npm install 10 | # build 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/dijkstra/README.zh-CN.md: -------------------------------------------------------------------------------- 1 | # 项目简介 2 | 3 | 一份空白的扩展。 4 | 5 | ## 安装 6 | 7 | ```bash 8 | # 安装依赖模块 9 | npm install 10 | # 构建 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/dijkstra/assets/runtime.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f6471102-277f-4e85-84ae-c9ecda1818c8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/dijkstra/assets/runtime/Dijkstra.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "fba75cd8-2322-486d-8f2a-4b447efd0cff", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/dijkstra/dist/main.js: -------------------------------------------------------------------------------- 1 | "use strict";function load(){}function unload(){}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unload=exports.load=exports.methods=void 0,exports.methods={showLog(){console.log("Hello World")}},exports.load=load,exports.unload=unload; -------------------------------------------------------------------------------- /Extensions/extensions/dijkstra/i18n/en.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"A blank extension",show_log:"Output log"}; -------------------------------------------------------------------------------- /Extensions/extensions/dijkstra/i18n/zh.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"一份空白的扩展",show_log:"输出日志"}; -------------------------------------------------------------------------------- /Extensions/extensions/fsm/README.md: -------------------------------------------------------------------------------- 1 | # Project Title 2 | 3 | An blank extension. 4 | 5 | ## Install 6 | 7 | ```bash 8 | # Install dependent modules 9 | npm install 10 | # build 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/fsm/README.zh-CN.md: -------------------------------------------------------------------------------- 1 | # 项目简介 2 | 3 | 一份空白的扩展。 4 | 5 | ## 安装 6 | 7 | ```bash 8 | # 安装依赖模块 9 | npm install 10 | # 构建 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/fsm/assets/runtime.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b4976618-164c-40bb-9a5b-2d1d7094bcb0", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/fsm/assets/runtime/IState.ts: -------------------------------------------------------------------------------- 1 | export interface IState { 2 | enter(entity: E, onComplete?: () => void): void; 3 | update(entity: E, dt: number): void; 4 | exit(entity: E): void; 5 | } 6 | -------------------------------------------------------------------------------- /Extensions/extensions/fsm/assets/runtime/IState.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f1ac1e51-a437-4c84-9ae0-41703de56dba", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/fsm/assets/runtime/IStateMachine.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6fb02624-4d47-4ea2-83c2-d19d5147c5df", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/fsm/assets/runtime/State.ts: -------------------------------------------------------------------------------- 1 | import { IState } from './IState'; 2 | 3 | export class State implements IState { 4 | enter(entity: E, onComplete?: () => void): void {} 5 | update(entity: E, dt: number): void {} 6 | exit(entity: E): void {} 7 | } 8 | -------------------------------------------------------------------------------- /Extensions/extensions/fsm/assets/runtime/State.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "93c14f84-1d1b-4c1f-b5a1-a32071f90399", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/fsm/assets/runtime/StateMachine.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f6c0af01-8fa0-49bd-bf17-08a2da3fe4c3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/fsm/dist/main.js: -------------------------------------------------------------------------------- 1 | "use strict";function load(){}function unload(){}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unload=exports.load=exports.methods=void 0,exports.methods={showLog(){console.log("Hello World")}},exports.load=load,exports.unload=unload; -------------------------------------------------------------------------------- /Extensions/extensions/fsm/i18n/en.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"A blank extension",show_log:"Output log"}; -------------------------------------------------------------------------------- /Extensions/extensions/fsm/i18n/zh.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"一份空白的扩展",show_log:"输出日志"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/editor/message/index.d.ts: -------------------------------------------------------------------------------- 1 | export interface TableBase { 2 | [x: string]: any; 3 | params: any[]; 4 | } 5 | export declare const Message: any; 6 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/editor/message/public/interface.d.ts: -------------------------------------------------------------------------------- 1 | export interface MessageInfo { 2 | methods: string[]; 3 | public?: boolean; 4 | description?: string; 5 | doc?: string; 6 | sync?: boolean; 7 | } 8 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/editor/package/public/config.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION: string; 2 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/editor/profile/public/config.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION: string; 2 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/editor/profile/public/interface.d.ts: -------------------------------------------------------------------------------- 1 | export declare type preferencesProtocol = 'default' | 'global' | 'local'; 2 | export declare type projectProtocol = 'default' | 'project'; 3 | export declare type tempProtocol = 'temp'; 4 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/editor/task/public/interface.d.ts: -------------------------------------------------------------------------------- 1 | export interface NoticeOptions { 2 | title: string; 3 | message?: string; 4 | type?: 'error' | 'warn' | 'log' | 'success'; 5 | source?: string; 6 | timeout?: number; 7 | } 8 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/editor/utils/source/url.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 快捷获取文档路径 3 | * @param relativeUrl 4 | * @param type 5 | */ 6 | export declare function getDocUrl(relativeUrl: string, type?: 'manual' | 'api'): string; 7 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/editor/windows/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: {}; 2 | export default _default; 3 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/index.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/packages/builder/@types/index.d.ts: -------------------------------------------------------------------------------- 1 | 2 | export * from './public'; 3 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/packages/builder/@types/protect/import-map.d.ts: -------------------------------------------------------------------------------- 1 | 2 | export interface ImportMap { 3 | imports?: Record; 4 | scopes?: Record>; 5 | } 6 | 7 | export type ImportMapWithImports = ImportMap & { imports: NonNullable }; 8 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/packages/builder/@types/public/global.d.ts: -------------------------------------------------------------------------------- 1 | import { IBuild } from "."; 2 | 3 | // 定义 builder 进程内的全局变量 4 | declare global { 5 | // @ts-ignore 6 | const Build: IBuild; 7 | } 8 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/@types/packages/preview/@types/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './protect/'; 2 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d62a7d20-47cc-4400-99b2-080fede78728", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/de.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.de = {"langTx":"Sprache","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/de.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "5b9d797d-3f14-4120-a2d6-a8f7c28b1c40", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/en.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.en = {"langTx":"Language","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/en.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "4eed04b2-cf94-4b77-92ff-dea27db6ae56", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/es.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.es = {"langTx":"Lenguaje","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/es.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "9689d6b0-c777-43df-a072-3cea435fd48f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/fr.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.fr = {"langTx":"Langue","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/fr.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "8931e6da-c33e-49a3-bb7c-7a7f9d150b97", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/it.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.it = {"langTx":"Linguagem","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/it.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "eff2ce80-1d11-471b-8f47-49cdd16f9812", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/ja.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.ja = {"langTx":"言語","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/ja.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f8b94e9f-489e-4d48-813c-0939ec7ab345", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/ko.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.ko = {"langTx":"언어","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/ko.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "92c50f5f-9583-489b-b03e-c31a1a979a52", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/pt.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.pt = {"langTx":"Linguagem","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"嗯","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/pt.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "42c11ffc-78f4-42a9-bb7e-2577492a5bb7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/ru.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.ru = {"langTx":"Язык","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/ru.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "0ebfb4d4-3065-4323-8aca-f56382b7f7bc", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/tc.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.tc = {"langTx":"語言","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/tc.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c978f1f7-4b03-4802-b279-c68ea3c6e61e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/vn.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.vn = {"langTx":"Linguagem","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/vn.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "117e32d9-6bbe-4def-94fc-37a97c7e89ef", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/zh.ts: -------------------------------------------------------------------------------- 1 | import { languages } from "../runtime/LanguageData"; 2 | languages.zh = {"langTx":"语 言","zh":"简体中文","en":"English","ja":"日本語","ko":"한국어","tc":"繁体中文","es":"Español","fr":"Français","de":"Deutsch","ru":"Русский","pt":"Português","it":"Italiano","vn":"Tiếng Việt"}; -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/config/zh.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "4b28b360-b50c-4d7f-b411-7d4739374997", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/examples.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "685204c9-cdba-403f-a1f7-3373e0c9b23e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/examples/main.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "1afb771c-ba78-40fc-86fe-3df524b939e2", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/runtime.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "7a8fbd18-74e9-42e4-8937-1a804dcff165", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/runtime/LanguageData.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "b3f015f8-224e-4b11-b20f-29766bdc9583", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/runtime/LocalizedLabel.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "edf98407-d83d-4052-80ab-b5095bc45ad4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/runtime/LocalizedMaterial.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "35069a83-5cf1-4be3-b129-d69f962ef45d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/assets/runtime/LocalizedSprite.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c05c2e42-e313-40ba-9598-301f77b48ce9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/excel/language.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/Extensions/extensions/i18n/excel/language.xlsx -------------------------------------------------------------------------------- /Extensions/extensions/i18n/i18n/en.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | 'description': 'localized extension', 5 | }; 6 | -------------------------------------------------------------------------------- /Extensions/extensions/i18n/i18n/zh.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | 'description': '本地化扩展', 5 | }; 6 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/README.md: -------------------------------------------------------------------------------- 1 | # Project Title 2 | 3 | An blank extension. 4 | 5 | ## Install 6 | 7 | ```bash 8 | # Install dependent modules 9 | npm install 10 | # build 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/README.zh-CN.md: -------------------------------------------------------------------------------- 1 | # 项目简介 2 | 3 | 一份空白的扩展。 4 | 5 | ## 安装 6 | 7 | ```bash 8 | # 安装依赖模块 9 | npm install 10 | # 构建 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/examples.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "3df3d632-6fce-42c7-80aa-b7ff1695e63a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/examples/scenes.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "cb9b289d-5866-43c2-ab2e-a2e0f04487d1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/examples/scenes/path.scene.meta: -------------------------------------------------------------------------------- 1 | {"ver":"1.1.50","importer":"scene","imported":true,"uuid":"7820fe97-f5e5-41f0-871b-5b5da7cb6da0","files":[".json"],"subMetas":{},"userData":{}} 2 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/examples/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "93f2784f-cdb3-4cd2-ae7d-3efe2d4309c7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/examples/scripts/PathTest.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ed39c2d8-8728-4fe5-ac0e-c2a2f4f339e1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/runtime.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "82543af6-ef57-4093-a757-cbb24f673139", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/runtime/AStar.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "e44a3321-4241-441b-bda1-d9d89a8953ba", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/runtime/BinaryHeap.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "d32c6b2f-51d3-4b9a-92e2-f8d0224bf3c1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/runtime/PathDefine.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "d0fd2c9e-b86d-41ee-99e8-2f3dcf7152b9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/runtime/PathGraph.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "89183860-1a05-4f7c-8b04-5487883187ac", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/runtime/PathStar.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "dcdb63a2-4c19-4999-a407-05b7d479361b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/assets/runtime/PathUtils.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "752bbdb2-6750-47f9-a282-1103dfd934d7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/dist/main.js: -------------------------------------------------------------------------------- 1 | "use strict";function load(){}function unload(){}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unload=exports.load=exports.methods=void 0,exports.methods={showLog(){console.log("Hello World")}},exports.load=load,exports.unload=unload; -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/i18n/en.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"A blank extension",show_log:"Output log"}; -------------------------------------------------------------------------------- /Extensions/extensions/pathfinding/i18n/zh.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"一份空白的扩展",show_log:"输出日志"}; -------------------------------------------------------------------------------- /Extensions/extensions/platform/README.md: -------------------------------------------------------------------------------- 1 | # Project Title 2 | 3 | An blank extension. 4 | 5 | ## Install 6 | 7 | ```bash 8 | # Install dependent modules 9 | npm install 10 | # build 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/README.zh-CN.md: -------------------------------------------------------------------------------- 1 | # 项目简介 2 | 3 | 一份空白的扩展。 4 | 5 | ## 安装 6 | 7 | ```bash 8 | # 安装依赖模块 9 | npm install 10 | # 构建 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a4fb1984-8b17-4239-8856-e53fb9769ec1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "0e3fbeec-a1cb-4648-8280-8e3434cdd2d6", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/PQIndex.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "51acdbaf-e1b4-44fd-af61-97dda37f7868", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/base.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "5818f943-d0d9-4a6c-a214-fa3cc7d94161", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/base/PQDotInfo.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "5dc072b1-16aa-47a4-89d5-27f86ce1479c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/base/PQExpo.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "04bf3806-717d-418e-8697-823d5bbdabef", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/base/PQLogin.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ff58214e-eea3-4050-a21f-217094b2fea1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/base/PQPay.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6576ffcf-aa04-40dc-a383-40b60448fa4b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/base/PQPlatform.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "31af843f-8641-44fd-81d9-2b4f62007151", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/entity.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "41269317-ff98-4d86-9549-b71ea617ad24", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/entity/PQConst.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "cd2a2762-d313-417d-98d9-8b4e8710cf9d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/entity/PQErrorCode.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 错误码 3 | */ 4 | export const enum PQErrorCode { 5 | /**无适合广告 */ 6 | NO_AD = 1002, 7 | } 8 | 9 | export const PQErrorMessage = { 10 | 11 | '1002': '无适合广告', 12 | 13 | }; 14 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/entity/PQErrorCode.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "935e3305-731f-428b-8884-cb3568ce5b66", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/entity/PQSystem.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6fda5aa5-cd53-48b1-88ec-6452b18a1540", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/entity/PQUser.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "a6949b45-8fea-4ea3-9f1c-716655816715", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/interface.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "95eb39b9-e95c-4364-833f-1628dde6b3f5", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/interface/IPQDotInfo.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "daa4cda2-ce3e-4fbb-a847-f0fb17b6ebb5", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/interface/IPQDotUser.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f8baef9f-bf5b-4570-b0fb-41a935cec7b7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/interface/IPQExpo.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "684752c4-7092-4bfd-b269-04f7ddfdd180", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/interface/IPQLogin.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ba67c7ff-398b-4b91-9ce1-7829902de3cc", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/interface/IPQPay.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "321b96fc-5d29-483b-b1b4-c6c99391e54e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/interface/IPQPlatform.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "a8e7e0cc-0db3-4650-96f8-9d38037c748c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/interface/IPQSystem.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "57dc01bf-3c92-4a99-b386-664112ed0aa1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/interface/IPQUser.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "29307851-258e-4c54-8f55-069b4b8820e4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/manager.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a95fb77f-b16f-4e23-96f1-5fcd29a5bb1f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/manager/PQExpoManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "7f6715d3-aac9-4367-8262-848332eb40f9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/manager/PQLoginManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "315629bd-f392-45c1-89a3-1a1a9781c99d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/manager/PQPlatformManager.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6825ca1e-44dc-4890-8bbf-9928d8b4997d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/core/manager/PQPlatformSDK.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "34cd8280-9885-450a-819c-93b6a4a134b6", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * 该引入为打包导入对应平台代码 3 | * web: ./web/PQIndex 4 | * wx: ./wx/PQIndex 5 | */ 6 | export * from './web/PQIndex'; 7 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/index.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "359aa5dd-145a-4eda-80c5-7d4f4eb69224", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/web.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "5ab3c9c5-440e-4617-bab0-0eb9f8431654", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/web/PQIndex.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "fc03f73d-4b67-4766-873a-23089349a319", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/web/PQWebDotInfo.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "cee3b36c-426f-4e43-b57b-4ae9bbdc879e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/web/PQWebLogin.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "48dfe876-826e-4a6d-bfee-b39927d14baf", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/web/PQWebPay.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6849159e-0d3f-4695-a508-cd1ef95645d7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/web/PQWebPlatform.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "b951ef00-1ae6-47f5-a7bd-47b21e1ee016", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/web/PQWebVideoExpo.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "5ad52d6f-d798-4289-ab06-3057304e3818", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/wx.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f963b08c-db7e-4dc9-b57d-8417fbf210db", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/wx/PQIndex.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "e2468fbc-7857-401a-9845-613f04dfe38d", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/wx/PQVideoExpo.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "e68c953d-3a22-45d7-8c76-595e94ec16a4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/wx/PQWxDotInfo.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "454dafb5-9717-472f-b87e-cb7c53ae3cd8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/wx/PQWxLogin.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c95cd8a1-dab4-4dbc-88c7-989b262fe98a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/wx/PQWxPay.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "2d6fc4e6-fdca-444d-8db8-191945d95f1c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/assets/runtime/wx/PQWxPlatform.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "b1c39091-851b-4e1e-b115-7c5cccfd5a8e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/platform/dist/main.js: -------------------------------------------------------------------------------- 1 | "use strict";function load(){}function unload(){}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unload=exports.load=exports.methods=void 0,exports.methods={showLog(){console.log("Hello World")}},exports.load=load,exports.unload=unload; -------------------------------------------------------------------------------- /Extensions/extensions/platform/i18n/en.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"A blank extension",show_log:"Output log"}; -------------------------------------------------------------------------------- /Extensions/extensions/platform/i18n/zh.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"一份空白的扩展",show_log:"输出日志"}; -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/README.md: -------------------------------------------------------------------------------- 1 | # Project Title 2 | 3 | An blank extension. 4 | 5 | ## Install 6 | 7 | ```bash 8 | # Install dependent modules 9 | npm install 10 | # build 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/README.zh-CN.md: -------------------------------------------------------------------------------- 1 | # 项目简介 2 | 3 | 一份空白的扩展。 4 | 5 | ## 安装 6 | 7 | ```bash 8 | # 安装依赖模块 9 | npm install 10 | # 构建 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/examples.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f044dfec-674b-435c-976e-94f50c4b8628", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/examples/scenes.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "7cab956a-9109-4c01-842d-ff2d5ec1a2f4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/examples/scenes/quadtree.scene.meta: -------------------------------------------------------------------------------- 1 | {"ver":"1.1.50","importer":"scene","imported":true,"uuid":"527ea84c-fd44-4119-b27f-afd2dce815b9","files":[".json"],"subMetas":{},"userData":{}} 2 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/examples/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "9205e62d-b068-4d84-91fa-077e8f5bac4a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/examples/scripts/QuadtreeTest.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "9bb7535a-a5ad-43bd-91c6-4589ea0462b5", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/runtime.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d053bb00-2aa3-4857-863c-046332b19bf1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/runtime/Circle.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f3e84b05-f398-47b2-a5de-e1aa2ac87d6a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/runtime/Line.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "bf37313b-9c65-4e3a-9141-a75c95945738", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/runtime/Quadtree.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6795b926-f373-48f1-8ddb-4f4693b39b57", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/runtime/Rectangle.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "3ae634c4-5595-4e97-a9c1-d3737b8391a3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/assets/runtime/types.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "50ce648b-b1e4-4396-bea5-a6a3bbbab88e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/dist/main.js: -------------------------------------------------------------------------------- 1 | "use strict";function load(){}function unload(){}Object.defineProperty(exports,"__esModule",{value:!0}),exports.unload=exports.load=exports.methods=void 0,exports.methods={showLog(){console.log("Hello World")}},exports.load=load,exports.unload=unload; -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/i18n/en.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"A blank extension",show_log:"Output log"}; -------------------------------------------------------------------------------- /Extensions/extensions/quadtree/i18n/zh.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"一份空白的扩展",show_log:"输出日志"}; -------------------------------------------------------------------------------- /Extensions/extensions/rvo/README.md: -------------------------------------------------------------------------------- 1 | # Project Title 2 | 3 | An blank extension. 4 | 5 | ## Install 6 | 7 | ```bash 8 | # Install dependent modules 9 | npm install 10 | # build 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/README.zh-CN.md: -------------------------------------------------------------------------------- 1 | # 项目简介 2 | 3 | 一份空白的扩展。 4 | 5 | ## 安装 6 | 7 | ```bash 8 | # 安装依赖模块 9 | npm install 10 | # 构建 11 | npm run build 12 | ``` 13 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/examples.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "4d37e1d2-9a15-4f43-a54f-dd72cb043d2f", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/examples/prefabs.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "2f0b71e2-4866-421c-99ed-fb0d4231ba75", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/examples/prefabs/rvo.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "12de0af5-90a0-4876-90dd-2e4039b3b07c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/examples/scenes.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "e3ac88b4-ed91-4b6b-b6dc-8b4259f2da04", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/examples/scenes/rvo.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "0b0b0ac8-63ee-47ea-963d-3b6cbc5480e7", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/examples/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "fb994e73-efd1-4c64-8685-e1f023ee5219", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/examples/scripts/RVOTest.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "d4909278-db9a-44ae-81bb-b74d42596932", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/runtime.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "e6d07f04-707d-44a4-ae86-d06c47cfc39c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/runtime/Agent.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "80a75c9b-2ac1-4f4f-b760-a87a93cd0161", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/runtime/KdTree.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "ee08c7d5-a623-4c26-934d-3b486445511e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/runtime/Line.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f0f6dece-4810-4445-9c3a-af14ae035b12", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/runtime/Obstacle.ts: -------------------------------------------------------------------------------- 1 | import Vector2D from './Vector2D'; 2 | 3 | export default class Obstacle { 4 | point: Vector2D = Vector2D.ZERO; 5 | unitDir: Vector2D = Vector2D.ZERO; 6 | isConvex: boolean = false; 7 | id = 0; 8 | previous: Obstacle; 9 | next: Obstacle; 10 | } 11 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/runtime/Obstacle.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "9d17f099-6206-450d-a2a7-d90cb879e650", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/runtime/RVOMath.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "c50c1e5b-d80f-459c-806c-c3362c846a03", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/runtime/Simulator.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "d827393a-9ff5-4862-8691-6fa653819c09", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/assets/runtime/Vector2D.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "6c630684-a274-4fba-ad8b-a32a898a37b1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /Extensions/extensions/rvo/i18n/en.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"A blank extension",show_log:"Output log"}; -------------------------------------------------------------------------------- /Extensions/extensions/rvo/i18n/zh.js: -------------------------------------------------------------------------------- 1 | "use strict";module.exports={description:"一份空白的扩展",show_log:"输出日志"}; -------------------------------------------------------------------------------- /Extensions/profiles/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.3.9", 3 | "log": { 4 | "level": 4 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Extensions/profiles/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /Extensions/profiles/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.10" 3 | } 4 | -------------------------------------------------------------------------------- /Extensions/profiles/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.4" 3 | } 4 | -------------------------------------------------------------------------------- /Extensions/profiles/v2/packages/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.6" 3 | } 4 | -------------------------------------------------------------------------------- /Extensions/profiles/v2/packages/reference-image.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.0", 3 | "config": { 4 | "images": [], 5 | "sceneUUID": {}, 6 | "scene": "0b0b0ac8-63ee-47ea-963d-3b6cbc5480e7" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Extensions/profiles/v2/packages/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.0", 3 | "server_port": 7456 4 | } 5 | -------------------------------------------------------------------------------- /Extensions/settings/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.3.9" 3 | } 4 | -------------------------------------------------------------------------------- /Extensions/settings/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /Extensions/settings/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.10" 3 | } 4 | -------------------------------------------------------------------------------- /Extensions/settings/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.4" 3 | } 4 | -------------------------------------------------------------------------------- /Extensions/settings/v2/packages/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.6", 3 | "custom_joint_texture_layouts": [] 4 | } 5 | -------------------------------------------------------------------------------- /ShaderLib/.creator/asset-template/typescript/Custom Script Template Help Documentation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://docs.cocos.com/creator/manual/en/scripting/setup.html#custom-script-template -------------------------------------------------------------------------------- /ShaderLib/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bin/ 3 | release/ 4 | libs/ 5 | build/ 6 | build-script/ 7 | -------------------------------------------------------------------------------- /ShaderLib/.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=TypeScript 2 | * text=auto 3 | *.bat eol=crlf 4 | *.cmd eol=crlf 5 | *.js eol=lf 6 | *.ts eol=lf 7 | *.json eol=lf 8 | *.md eol=lf 9 | -------------------------------------------------------------------------------- /ShaderLib/.prettierignore: -------------------------------------------------------------------------------- 1 | **/.vscode 2 | bin/ 3 | README.md 4 | -------------------------------------------------------------------------------- /ShaderLib/assets/avatar.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "0d1b3773-c4ed-44b2-9fed-0e616f67b0c8", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/avatar/arc_sprite.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "ec4ab0a8-5ed9-46f5-8e53-dfc508f37612", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/avatar/arc_sprite.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "19729384-0809-4706-a203-5432e1b28fcf", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/avatar/arc_sprite.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "f046055b-f35e-4fe9-9686-639f1f63612d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/avatar/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/avatar/icon.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/blur.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "be69679b-f4c4-45e6-be39-6480dea873b0", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/blur/blur.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "79b08495-483a-4fb1-afc1-aafb2c334618", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/blur/gaussian_blur.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "12f5ed02-faaa-42f7-8804-6275b4fbdcfc", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/blur/gaussian_blur.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "88bf900e-dac5-45d8-bde3-bf45dc33c629", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/blur/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/blur/icon.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/blur/radial_blur.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "e3f8dab2-3063-43b6-8cd0-1b5fea631615", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/blur/radial_blur.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "4257604b-7b62-452f-8378-2c63babfedfc", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/blur/scenery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/blur/scenery.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/chunks.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "998c9f66-831e-4478-8eb3-b52140ab20b4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/chunks/noise.chunk.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.7", 3 | "importer": "effect-header", 4 | "imported": true, 5 | "uuid": "15aa1d5a-a70e-4081-8e83-7c926f2aade5", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /ShaderLib/assets/cooldown.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "273aa37f-77af-4bf2-8655-d410299edd69", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/cooldown/arc_cd.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "c363b8b4-7fe4-4eb9-b9a7-a1b9e6d1f656", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/cooldown/arc_cd.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "03c8a827-b308-4202-987d-b7e72021c359", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/cooldown/arc_cd.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "f56e603c-9249-491d-a5b2-64ba256ef1c1", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/cooldown/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/cooldown/icon.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/cooldown/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/cooldown/mask.png -------------------------------------------------------------------------------- /ShaderLib/assets/dissolve.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "0d265da9-3fe5-4b24-9d81-429ed7c2ab4c", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/dissolve/dissolve.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "03c5299d-6374-4597-86de-e60c9d68f9d6", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/dissolve/dissolve.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "68a4b527-d7ba-406b-a66e-8d78989b5965", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/dissolve/dissolve.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "55483113-cccf-4372-9063-6270ea54cd0d", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/dissolve/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/dissolve/icon.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/dissolveNoise.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1d7f1134-3886-4b83-8c6c-4c10f6b7ffd3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/dissolveNoise/dissolve_noise.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "dfc755a2-49b2-4527-87ba-b67160f1b1f2", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/dissolveNoise/dissolve_noise.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "c0be79c1-1b7c-4db4-9f99-9bc88196db37", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/dissolveNoise/dissolve_noise.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "ca50347e-32f4-44f8-af52-0bfbae65b6a2", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/dissolveNoise/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/dissolveNoise/icon.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/dissolveNoise/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/dissolveNoise/noise.png -------------------------------------------------------------------------------- /ShaderLib/assets/energyEnvelope.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "0c066a57-8fdc-4c5e-af3b-6431e9d0f4c4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/energyEnvelope/RT_Scene.rt: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.RenderTexture", 3 | "content": { 4 | "base": "2,2,0,0,0,0", 5 | "w": 960, 6 | "h": 640, 7 | "n": "RT-Scene" 8 | } 9 | } -------------------------------------------------------------------------------- /ShaderLib/assets/energyEnvelope/RT_Scene_Back.rt: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.RenderTexture", 3 | "content": { 4 | "base": "2,2,0,0,0,0", 5 | "w": 960, 6 | "h": 640, 7 | "n": "RT-Sphere-Back" 8 | } 9 | } -------------------------------------------------------------------------------- /ShaderLib/assets/energyEnvelope/energy_envelope.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "c2922a3f-6071-4699-9614-7914dca669b1", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/energyEnvelope/energy_envelope.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "15f42ca0-29ab-4150-b1e5-65b26e9bcd33", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/energyEnvelope/energy_envelope_back.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "a3c10395-6b78-45fb-9e54-cb9af5ac9546", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/energyEnvelope/energy_envelope_front.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "2efda71f-5d78-4e74-a2b2-7ec7614719f0", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/energyEnvelope/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/energyEnvelope/noise.png -------------------------------------------------------------------------------- /ShaderLib/assets/innerGrow.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "6d0a50f0-322d-4c08-ac2c-7ccacbd12183", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/innerGrow/inner_grow.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "95345f42-fabc-42b9-a7a2-21ebd7899b16", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/innerGrow/inner_grow.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "cef113b8-3479-4e98-8f15-6d3569941e32", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/innerGrow/inner_grow.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "fd74b62c-92ab-4fab-8b9a-776cca3e19d3", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/interlude.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "02a74b0e-40ba-4507-b969-21cf1bfb77cb", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /ShaderLib/assets/interlude/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/interlude/back.png -------------------------------------------------------------------------------- /ShaderLib/assets/interlude/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/interlude/bg.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/interlude/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/interlude/icon.png -------------------------------------------------------------------------------- /ShaderLib/assets/interlude/interlude.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "d1319dfa-a7c4-4650-8726-0afb455a85c3", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/interlude/interlude.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "4e046c80-d9a0-4800-9a39-34eae32d82de", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/interlude/interlude.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "8ef09714-1949-452b-a403-2d5d9089bbd3", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/keepOut.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "aa830846-e52e-4b85-8727-8efd3fe731a9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/keepOut/keep_out.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "74f2b6f6-cab7-4310-8890-9543598f9970", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/keepOut/keep_out.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "e34f859e-aa0b-474f-af3b-e325df868a8e", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/keepOut/keep_out.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "afcbf787-8936-452b-9aa6-982ad0581ad2", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/keepOut/w_color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/keepOut/w_color.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/noiseFire.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "be7a4f26-caea-40d2-a599-f4537736c8fc", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/noiseFire/fire.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "3ee7fd7a-dd6c-42e3-a5a2-d62513cb9693", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/noiseFire/fire.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "aee3e26f-c78a-488a-9ace-1d28aa406cda", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/noiseFire/noise_fire.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "cd335948-32b3-4c0a-8da0-bd22272dbe23", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/noiseWaterDrop.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "dc199752-3cf6-4864-b9ba-d9d75ebb8bc4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/noiseWaterDrop/noise_water_drop.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "a9c52681-a6fe-4072-8489-a29b3ca91473", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/noiseWaterDrop/noise_water_drop.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "e8fa71f8-4f14-47dc-a1f3-4438075af216", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/noiseWaterDrop/noise_water_drop.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "a05c2f96-ecba-4c3c-8e89-a80ae3075afd", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/noiseWaterDrop/w_color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/noiseWaterDrop/w_color.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/outerGrow.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "9f51b62f-e80a-4022-bdad-2cb497df9af0", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/outerGrow/outer_grow.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "dd905131-415d-4d4c-8f2a-427a7431d117", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/outerGrow/outer_grow.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "10120607-9166-404d-927f-fb829d537876", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/outerGrow/outer_grow.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "09e162ae-63ed-4006-ab35-da0c2b45c658", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/scripts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "b2e7c16b-c990-4d46-ba27-109d065b37c5", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /ShaderLib/assets/scripts/Game.ts: -------------------------------------------------------------------------------- 1 | import { _decorator, Component, DynamicAtlasManager } from 'cc'; 2 | const { ccclass, property } = _decorator; 3 | 4 | @ccclass('Game') 5 | export class Game extends Component { 6 | start() { 7 | DynamicAtlasManager.instance.enabled = false; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ShaderLib/assets/scripts/Game.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "2f736f5e-ffd2-4b8b-844a-6c3c26ae37c0", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /ShaderLib/assets/sketch.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "bc922c18-4fa6-49f4-8906-b92dbd0c0cb1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/sketch/scenery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/sketch/scenery.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/sketch/sketch.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "4de5dd71-83ca-4154-a0ce-21674d535595", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/sketch/sketch.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "255cff43-e913-4d53-a918-62c8376d2258", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/sweepLight.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "ca27fb6c-e872-4d3b-8869-ae79200c1419", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/sweepLight/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/sweepLight/icon.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/sweepLight/sweep_light.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "4952b007-e3f0-4286-88f5-ea454d0d21ca", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/sweepLight/sweep_light.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "1aa00384-8509-4ae0-b17f-46d608c0f412", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/sweepLight/sweep_light.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "434fea34-2628-4821-9248-1aabf84b2720", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/water.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "665d887a-aa05-4194-98a4-c521238dd0d4", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/water/DepthMapSetter.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.24", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "43e560b5-1c3c-43a2-96c0-4e0dc50e3000", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /ShaderLib/assets/water/depthTexture.rt: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.RenderTexture", 3 | "content": { 4 | "base": "2,2,0,0,0,0", 5 | "w": 960, 6 | "h": 640, 7 | "n": "deepTexture" 8 | } 9 | } -------------------------------------------------------------------------------- /ShaderLib/assets/water/texture.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "e7fae562-11c4-427b-ade8-c600cf5d1cd1", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/water/texture/PerlinNoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/water/texture/PerlinNoise.png -------------------------------------------------------------------------------- /ShaderLib/assets/water/texture/WaterDistortion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/water/texture/WaterDistortion.png -------------------------------------------------------------------------------- /ShaderLib/assets/water/water.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "70860f4a-7df2-43bc-b8b4-41b0adfa13bd", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/water/water.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "fab47015-99fc-4160-b962-361a11374a57", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/water/water.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "e30f7c4d-fafb-439e-bd00-7becee46e434", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/wave.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "402db5fd-47c2-4953-8802-27dde399fdb9", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /ShaderLib/assets/wave/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/assets/wave/icon.jpg -------------------------------------------------------------------------------- /ShaderLib/assets/wave/vave_sprite.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.21", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "bf4234b4-c6fa-44bc-9283-b9af0ae81f89", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/wave/wave_sprite.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.1", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "83cc3e2a-fe0a-43d9-984a-12e4d02e720a", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/assets/wave/wave_sprite.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.50", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "adf3d290-ad72-4ecb-8c6d-92392f30fec1", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /ShaderLib/image/keep_out.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/image/keep_out.jpg -------------------------------------------------------------------------------- /ShaderLib/image/noise_fire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/image/noise_fire.jpg -------------------------------------------------------------------------------- /ShaderLib/image/noise_water_drop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanmingjie0223/CocosCreator/65b40fbe5cd2bcca4b078b3e8e66796b25e53c8c/ShaderLib/image/noise_water_drop.jpg -------------------------------------------------------------------------------- /ShaderLib/profiles/v2/editor/packages.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ShaderLib/profiles/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.3.9", 3 | "log": { 4 | "level": 4 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ShaderLib/profiles/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /ShaderLib/profiles/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.12" 3 | } 4 | -------------------------------------------------------------------------------- /ShaderLib/profiles/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.4" 3 | } 4 | -------------------------------------------------------------------------------- /ShaderLib/profiles/v2/packages/project.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.6" 3 | } 4 | -------------------------------------------------------------------------------- /ShaderLib/profiles/v2/packages/reference-image.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.0", 3 | "config": { 4 | "images": [], 5 | "sceneUUID": {}, 6 | "scene": "adf3d290-ad72-4ecb-8c6d-92392f30fec1" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ShaderLib/profiles/v2/packages/server.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.0", 3 | "server_port": 7456 4 | } 5 | -------------------------------------------------------------------------------- /ShaderLib/settings/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.3.9", 3 | "textureCompressConfig": { 4 | "genMipmaps": false 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ShaderLib/settings/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /ShaderLib/settings/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.12" 3 | } 4 | -------------------------------------------------------------------------------- /ShaderLib/settings/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.4" 3 | } 4 | --------------------------------------------------------------------------------