create-dubhe 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +9 -0
- package/dist/index.mjs +100 -0
- package/index.js +3 -0
- package/package.json +46 -0
- package/template/101/aptos-template/.dockerignore +7 -0
- package/template/101/aptos-template/.eslintrc.json +3 -0
- package/template/101/aptos-template/.prettierrc +8 -0
- package/template/101/aptos-template/Dockerfile +56 -0
- package/template/101/aptos-template/LICENSE +674 -0
- package/template/101/aptos-template/README.md +14 -0
- package/template/101/aptos-template/contracts/counter/Move.toml +16 -0
- package/template/101/aptos-template/contracts/counter/sources/codegen/eps/events.move +34 -0
- package/template/101/aptos-template/contracts/counter/sources/codegen/eps/world.move +65 -0
- package/template/101/aptos-template/contracts/counter/sources/codegen/init.move +17 -0
- package/template/101/aptos-template/contracts/counter/sources/codegen/schemas/counter.move +59 -0
- package/template/101/aptos-template/contracts/counter/sources/entity_key.move +31 -0
- package/template/101/aptos-template/contracts/counter/sources/script/deploy_hook.move +19 -0
- package/template/101/aptos-template/contracts/counter/sources/system/counter_system.move +11 -0
- package/template/101/aptos-template/dubhe.config.ts +13 -0
- package/template/101/aptos-template/jest.config.ts +17 -0
- package/template/101/aptos-template/next-env.d.ts +5 -0
- package/template/101/aptos-template/next-i18next.config.js +6 -0
- package/template/101/aptos-template/next.config.js +15 -0
- package/template/101/aptos-template/package.json +83 -0
- package/template/101/aptos-template/postcss.config.js +6 -0
- package/template/101/aptos-template/public/discord.svg +9 -0
- package/template/101/aptos-template/public/fail.svg +12 -0
- package/template/101/aptos-template/public/favicon.ico +0 -0
- package/template/101/aptos-template/public/locales/de/common.json +8 -0
- package/template/101/aptos-template/public/locales/de/footer.json +3 -0
- package/template/101/aptos-template/public/locales/de/second-page.json +5 -0
- package/template/101/aptos-template/public/locales/en/common.json +8 -0
- package/template/101/aptos-template/public/locales/en/footer.json +3 -0
- package/template/101/aptos-template/public/locales/en/second-page.json +5 -0
- package/template/101/aptos-template/public/locales/zn/common.json +8 -0
- package/template/101/aptos-template/public/locales/zn/footer.json +3 -0
- package/template/101/aptos-template/public/locales/zn/second-page.json +5 -0
- package/template/101/aptos-template/public/logo.svg +1 -0
- package/template/101/aptos-template/public/medium.svg +9 -0
- package/template/101/aptos-template/public/successful.svg +11 -0
- package/template/101/aptos-template/public/telegram.svg +9 -0
- package/template/101/aptos-template/public/twitter.svg +9 -0
- package/template/101/aptos-template/scripts/formatAccount.ts +35 -0
- package/template/101/aptos-template/scripts/generateAccount.ts +25 -0
- package/template/101/aptos-template/scripts/storeConfig.ts +54 -0
- package/template/101/aptos-template/src/chain/config.ts +7 -0
- package/template/101/aptos-template/src/css/font-awesome.css +2337 -0
- package/template/101/aptos-template/src/css/font-awesome.min.css +4 -0
- package/template/101/aptos-template/src/fonts/FontAwesome.otf +0 -0
- package/template/101/aptos-template/src/fonts/fontawesome-webfont.eot +0 -0
- package/template/101/aptos-template/src/fonts/fontawesome-webfont.svg +2671 -0
- package/template/101/aptos-template/src/fonts/fontawesome-webfont.ttf +0 -0
- package/template/101/aptos-template/src/fonts/fontawesome-webfont.woff +0 -0
- package/template/101/aptos-template/src/fonts/fontawesome-webfont.woff2 +0 -0
- package/template/101/aptos-template/src/jotai/index.tsx +12 -0
- package/template/101/aptos-template/src/pages/_app.tsx +9 -0
- package/template/101/aptos-template/src/pages/home/index.tsx +78 -0
- package/template/101/aptos-template/src/pages/index.tsx +12 -0
- package/template/101/aptos-template/tailwind.config.js +56 -0
- package/template/101/aptos-template/tsconfig.json +25 -0
- package/template/101/sui-template/.dockerignore +7 -0
- package/template/101/sui-template/.eslintrc.json +3 -0
- package/template/101/sui-template/.prettierrc +8 -0
- package/template/101/sui-template/Dockerfile +52 -0
- package/template/101/sui-template/LICENSE +674 -0
- package/template/101/sui-template/README.md +14 -0
- package/template/101/sui-template/contracts/counter/Move.toml +13 -0
- package/template/101/sui-template/contracts/counter/sources/codegen/dapp_key.move +16 -0
- package/template/101/sui-template/contracts/counter/sources/codegen/schemas/counter.move +50 -0
- package/template/101/sui-template/contracts/counter/sources/script/deploy_hook.move +67 -0
- package/template/101/sui-template/contracts/counter/sources/system/counter.move +11 -0
- package/template/101/sui-template/docker-compose.yaml +29 -0
- package/template/101/sui-template/dubhe.config.ts +14 -0
- package/template/101/sui-template/jest.config.ts +17 -0
- package/template/101/sui-template/localnet/dubhe-framework/Move.toml +39 -0
- package/template/101/sui-template/localnet/dubhe-framework/README.md +18 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/access_control.move +35 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/events.move +23 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/resource_id.move +22 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/resource_types.move +18 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/schema.move +36 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/schemas/dapps/dapps.move +73 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/schemas/dapps/metadata.move +96 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/storages/double_map.move +156 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/storages/map.move +159 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/storages/value.move +100 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/systems/dapps.move +90 -0
- package/template/101/sui-template/localnet/dubhe-framework/sources/world.move +81 -0
- package/template/101/sui-template/localnet/dubhe-framework/tests/dapp.move +16 -0
- package/template/101/sui-template/localnet/dubhe-framework/tests/init.move +6 -0
- package/template/101/sui-template/localnet/dubhe-framework/tests/obelisk_framework_tests.move +19 -0
- package/template/101/sui-template/localnet/dubhe-framework/tests/storage.move +398 -0
- package/template/101/sui-template/next-env.d.ts +5 -0
- package/template/101/sui-template/next-i18next.config.js +6 -0
- package/template/101/sui-template/next.config.js +15 -0
- package/template/101/sui-template/package.json +82 -0
- package/template/101/sui-template/postcss.config.js +6 -0
- package/template/101/sui-template/public/discord.svg +9 -0
- package/template/101/sui-template/public/fail.svg +12 -0
- package/template/101/sui-template/public/favicon.ico +0 -0
- package/template/101/sui-template/public/locales/de/common.json +8 -0
- package/template/101/sui-template/public/locales/de/footer.json +3 -0
- package/template/101/sui-template/public/locales/de/second-page.json +5 -0
- package/template/101/sui-template/public/locales/en/common.json +8 -0
- package/template/101/sui-template/public/locales/en/footer.json +3 -0
- package/template/101/sui-template/public/locales/en/second-page.json +5 -0
- package/template/101/sui-template/public/locales/zn/common.json +8 -0
- package/template/101/sui-template/public/locales/zn/footer.json +3 -0
- package/template/101/sui-template/public/locales/zn/second-page.json +5 -0
- package/template/101/sui-template/public/logo.svg +1 -0
- package/template/101/sui-template/public/medium.svg +9 -0
- package/template/101/sui-template/public/successful.svg +11 -0
- package/template/101/sui-template/public/telegram.svg +9 -0
- package/template/101/sui-template/public/twitter.svg +9 -0
- package/template/101/sui-template/scripts/checkBalance.ts +40 -0
- package/template/101/sui-template/scripts/deployment/common.ts +60 -0
- package/template/101/sui-template/scripts/deployment/localnet/deploy.ts +42 -0
- package/template/101/sui-template/scripts/deployment/testnet/deploy.ts +48 -0
- package/template/101/sui-template/scripts/deployment/types.ts +13 -0
- package/template/101/sui-template/scripts/framework/common.ts +17 -0
- package/template/101/sui-template/scripts/framework/deploy.ts +199 -0
- package/template/101/sui-template/scripts/framework/parse-history.ts +76 -0
- package/template/101/sui-template/scripts/framework/types.ts +8 -0
- package/template/101/sui-template/scripts/generateAccount.ts +55 -0
- package/template/101/sui-template/scripts/storeConfig.ts +61 -0
- package/template/101/sui-template/scripts/waitNode.ts +9 -0
- package/template/101/sui-template/src/chain/config.ts +7 -0
- package/template/101/sui-template/src/css/font-awesome.css +2337 -0
- package/template/101/sui-template/src/css/font-awesome.min.css +4 -0
- package/template/101/sui-template/src/fonts/FontAwesome.otf +0 -0
- package/template/101/sui-template/src/fonts/fontawesome-webfont.eot +0 -0
- package/template/101/sui-template/src/fonts/fontawesome-webfont.svg +2671 -0
- package/template/101/sui-template/src/fonts/fontawesome-webfont.ttf +0 -0
- package/template/101/sui-template/src/fonts/fontawesome-webfont.woff +0 -0
- package/template/101/sui-template/src/fonts/fontawesome-webfont.woff2 +0 -0
- package/template/101/sui-template/src/jotai/index.tsx +12 -0
- package/template/101/sui-template/src/pages/_app.tsx +9 -0
- package/template/101/sui-template/src/pages/home/index.tsx +82 -0
- package/template/101/sui-template/src/pages/index.tsx +14 -0
- package/template/101/sui-template/tailwind.config.js +56 -0
- package/template/101/sui-template/tsconfig.json +25 -0
- package/template/cocos/aptos-template/.creator/asset-template/typescript/Custom Script Template Help Documentation.url +2 -0
- package/template/cocos/aptos-template/README.md +11 -0
- package/template/cocos/aptos-template/assets/Scripts/aptos.ts +87 -0
- package/template/cocos/aptos-template/assets/Scripts/aptos.ts.meta +9 -0
- package/template/cocos/aptos-template/assets/Scripts/chain/config.ts +12 -0
- package/template/cocos/aptos-template/assets/Scripts/chain/config.ts.meta +9 -0
- package/template/cocos/aptos-template/assets/Scripts/chain/key.ts.meta +9 -0
- package/template/cocos/aptos-template/assets/Scripts/chain.meta +9 -0
- package/template/cocos/aptos-template/assets/Scripts/dubhe.config.ts +13 -0
- package/template/cocos/aptos-template/assets/Scripts/dubhe.config.ts.meta +9 -0
- package/template/cocos/aptos-template/assets/Scripts.meta +9 -0
- package/template/cocos/aptos-template/assets/lib/dubhe.js +22281 -0
- package/template/cocos/aptos-template/assets/lib/obelisk.js +22281 -0
- package/template/cocos/aptos-template/assets/lib/obelisk.js.meta +15 -0
- package/template/cocos/aptos-template/assets/lib.meta +12 -0
- package/template/cocos/aptos-template/assets/main.scene +875 -0
- package/template/cocos/aptos-template/assets/main.scene.meta +11 -0
- package/template/cocos/aptos-template/contracts/counter/Move.toml +16 -0
- package/template/cocos/aptos-template/contracts/counter/sources/codegen/eps/events.move +34 -0
- package/template/cocos/aptos-template/contracts/counter/sources/codegen/eps/world.move +65 -0
- package/template/cocos/aptos-template/contracts/counter/sources/codegen/init.move +17 -0
- package/template/cocos/aptos-template/contracts/counter/sources/codegen/schemas/counter.move +59 -0
- package/template/cocos/aptos-template/contracts/counter/sources/entity_key.move +31 -0
- package/template/cocos/aptos-template/contracts/counter/sources/script/deploy_hook.move +19 -0
- package/template/cocos/aptos-template/contracts/counter/sources/system/counter_system.move +11 -0
- package/template/cocos/aptos-template/package.json +39 -0
- package/template/cocos/aptos-template/scripts/formatAccount.ts +35 -0
- package/template/cocos/aptos-template/scripts/generateAccount.ts +25 -0
- package/template/cocos/aptos-template/scripts/storeConfig.ts +68 -0
- package/template/cocos/aptos-template/settings/v2/packages/builder.json +3 -0
- package/template/cocos/aptos-template/settings/v2/packages/cocos-service.json +23 -0
- package/template/cocos/aptos-template/settings/v2/packages/device.json +3 -0
- package/template/cocos/aptos-template/settings/v2/packages/engine.json +150 -0
- package/template/cocos/aptos-template/settings/v2/packages/information.json +23 -0
- package/template/cocos/aptos-template/settings/v2/packages/program.json +3 -0
- package/template/cocos/aptos-template/settings/v2/packages/project.json +3 -0
- package/template/cocos/aptos-template/tsconfig.json +12 -0
- package/template/cocos/sui-template/.creator/asset-template/typescript/Custom Script Template Help Documentation.url +2 -0
- package/template/cocos/sui-template/README.md +11 -0
- package/template/cocos/sui-template/assets/Scripts/chain/config.ts +12 -0
- package/template/cocos/sui-template/assets/Scripts/chain/config.ts.meta +9 -0
- package/template/cocos/sui-template/assets/Scripts/chain/key.ts.meta +9 -0
- package/template/cocos/sui-template/assets/Scripts/chain.meta +9 -0
- package/template/cocos/sui-template/assets/Scripts/dubhe.config.ts +13 -0
- package/template/cocos/sui-template/assets/Scripts/dubhe.config.ts.meta +9 -0
- package/template/cocos/sui-template/assets/Scripts/sui.ts +120 -0
- package/template/cocos/sui-template/assets/Scripts/sui.ts.meta +9 -0
- package/template/cocos/sui-template/assets/Scripts.meta +12 -0
- package/template/cocos/sui-template/assets/lib/dubhe.js +55694 -0
- package/template/cocos/sui-template/assets/lib/dubhe.js.meta +15 -0
- package/template/cocos/sui-template/assets/lib.meta +12 -0
- package/template/cocos/sui-template/assets/main.scene +875 -0
- package/template/cocos/sui-template/assets/main.scene.meta +11 -0
- package/template/cocos/sui-template/contracts/counter/Move.toml +13 -0
- package/template/cocos/sui-template/contracts/counter/sources/codegen/dapp_key.move +16 -0
- package/template/cocos/sui-template/contracts/counter/sources/codegen/schemas/counter.move +50 -0
- package/template/cocos/sui-template/contracts/counter/sources/script/deploy_hook.move +67 -0
- package/template/cocos/sui-template/contracts/counter/sources/system/counter.move +11 -0
- package/template/cocos/sui-template/docker-compose.yaml +18 -0
- package/template/cocos/sui-template/package.json +27 -0
- package/template/cocos/sui-template/scripts/generateAccount.ts +55 -0
- package/template/cocos/sui-template/scripts/storeConfig.ts +75 -0
- package/template/cocos/sui-template/settings/v2/packages/builder.json +3 -0
- package/template/cocos/sui-template/settings/v2/packages/cocos-service.json +23 -0
- package/template/cocos/sui-template/settings/v2/packages/device.json +3 -0
- package/template/cocos/sui-template/settings/v2/packages/engine.json +150 -0
- package/template/cocos/sui-template/settings/v2/packages/information.json +23 -0
- package/template/cocos/sui-template/settings/v2/packages/program.json +3 -0
- package/template/cocos/sui-template/settings/v2/packages/project.json +3 -0
- package/template/cocos/sui-template/tsconfig.json +19 -0
- package/template/nextjs/aptos-template/.dockerignore +7 -0
- package/template/nextjs/aptos-template/.eslintrc.json +3 -0
- package/template/nextjs/aptos-template/.prettierrc +8 -0
- package/template/nextjs/aptos-template/Dockerfile +56 -0
- package/template/nextjs/aptos-template/LICENSE +674 -0
- package/template/nextjs/aptos-template/README.md +13 -0
- package/template/nextjs/aptos-template/contracts/counter/Move.toml +16 -0
- package/template/nextjs/aptos-template/contracts/counter/sources/codegen/eps/events.move +34 -0
- package/template/nextjs/aptos-template/contracts/counter/sources/codegen/eps/world.move +65 -0
- package/template/nextjs/aptos-template/contracts/counter/sources/codegen/init.move +17 -0
- package/template/nextjs/aptos-template/contracts/counter/sources/codegen/schemas/counter.move +59 -0
- package/template/nextjs/aptos-template/contracts/counter/sources/entity_key.move +31 -0
- package/template/nextjs/aptos-template/contracts/counter/sources/script/deploy_hook.move +19 -0
- package/template/nextjs/aptos-template/contracts/counter/sources/system/counter_system.move +11 -0
- package/template/nextjs/aptos-template/dubhe.config.ts +13 -0
- package/template/nextjs/aptos-template/jest.config.ts +17 -0
- package/template/nextjs/aptos-template/next-env.d.ts +5 -0
- package/template/nextjs/aptos-template/next-i18next.config.js +6 -0
- package/template/nextjs/aptos-template/next.config.js +15 -0
- package/template/nextjs/aptos-template/package.json +82 -0
- package/template/nextjs/aptos-template/postcss.config.js +6 -0
- package/template/nextjs/aptos-template/public/discord.svg +9 -0
- package/template/nextjs/aptos-template/public/fail.svg +12 -0
- package/template/nextjs/aptos-template/public/favicon.ico +0 -0
- package/template/nextjs/aptos-template/public/locales/de/common.json +8 -0
- package/template/nextjs/aptos-template/public/locales/de/footer.json +3 -0
- package/template/nextjs/aptos-template/public/locales/de/second-page.json +5 -0
- package/template/nextjs/aptos-template/public/locales/en/common.json +8 -0
- package/template/nextjs/aptos-template/public/locales/en/footer.json +3 -0
- package/template/nextjs/aptos-template/public/locales/en/second-page.json +5 -0
- package/template/nextjs/aptos-template/public/locales/zn/common.json +8 -0
- package/template/nextjs/aptos-template/public/locales/zn/footer.json +3 -0
- package/template/nextjs/aptos-template/public/locales/zn/second-page.json +5 -0
- package/template/nextjs/aptos-template/public/logo.svg +1 -0
- package/template/nextjs/aptos-template/public/medium.svg +9 -0
- package/template/nextjs/aptos-template/public/successful.svg +11 -0
- package/template/nextjs/aptos-template/public/telegram.svg +9 -0
- package/template/nextjs/aptos-template/public/twitter.svg +9 -0
- package/template/nextjs/aptos-template/scripts/formatAccount.ts +35 -0
- package/template/nextjs/aptos-template/scripts/generateAccount.ts +25 -0
- package/template/nextjs/aptos-template/scripts/storeConfig.ts +54 -0
- package/template/nextjs/aptos-template/src/chain/config.ts +7 -0
- package/template/nextjs/aptos-template/src/components/Animation.tsx +80 -0
- package/template/nextjs/aptos-template/src/components/Container.tsx +11 -0
- package/template/nextjs/aptos-template/src/components/footer/index.tsx +138 -0
- package/template/nextjs/aptos-template/src/components/head/index.tsx +14 -0
- package/template/nextjs/aptos-template/src/components/header/index.tsx +173 -0
- package/template/nextjs/aptos-template/src/components/pop_up_box/index.tsx +149 -0
- package/template/nextjs/aptos-template/src/css/font-awesome.css +2337 -0
- package/template/nextjs/aptos-template/src/css/font-awesome.min.css +4 -0
- package/template/nextjs/aptos-template/src/fonts/FontAwesome.otf +0 -0
- package/template/nextjs/aptos-template/src/fonts/fontawesome-webfont.eot +0 -0
- package/template/nextjs/aptos-template/src/fonts/fontawesome-webfont.svg +2671 -0
- package/template/nextjs/aptos-template/src/fonts/fontawesome-webfont.ttf +0 -0
- package/template/nextjs/aptos-template/src/fonts/fontawesome-webfont.woff +0 -0
- package/template/nextjs/aptos-template/src/fonts/fontawesome-webfont.woff2 +0 -0
- package/template/nextjs/aptos-template/src/jotai/index.tsx +13 -0
- package/template/nextjs/aptos-template/src/pages/_app.tsx +32 -0
- package/template/nextjs/aptos-template/src/pages/home/index.tsx +112 -0
- package/template/nextjs/aptos-template/src/pages/index.tsx +15 -0
- package/template/nextjs/aptos-template/tailwind.config.js +59 -0
- package/template/nextjs/aptos-template/tsconfig.json +35 -0
- package/template/nextjs/sui-template/.dockerignore +7 -0
- package/template/nextjs/sui-template/.eslintrc.json +3 -0
- package/template/nextjs/sui-template/.prettierrc +8 -0
- package/template/nextjs/sui-template/Dockerfile +52 -0
- package/template/nextjs/sui-template/LICENSE +674 -0
- package/template/nextjs/sui-template/README.md +13 -0
- package/template/nextjs/sui-template/contracts/counter/Move.toml +13 -0
- package/template/nextjs/sui-template/contracts/counter/sources/codegen/dapp_key.move +16 -0
- package/template/nextjs/sui-template/contracts/counter/sources/codegen/schemas/counter.move +50 -0
- package/template/nextjs/sui-template/contracts/counter/sources/script/deploy_hook.move +67 -0
- package/template/nextjs/sui-template/contracts/counter/sources/system/counter.move +11 -0
- package/template/nextjs/sui-template/docker-compose.yaml +29 -0
- package/template/nextjs/sui-template/dubhe.config.ts +14 -0
- package/template/nextjs/sui-template/jest.config.ts +17 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/Move.toml +39 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/README.md +18 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/access_control.move +35 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/events.move +23 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/resource_id.move +22 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/resource_types.move +18 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/schema.move +36 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/schemas/dapps/dapps.move +73 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/schemas/dapps/metadata.move +96 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/storages/double_map.move +156 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/storages/map.move +159 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/storages/value.move +100 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/systems/dapps.move +90 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/sources/world.move +81 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/tests/dapp.move +16 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/tests/init.move +6 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/tests/obelisk_framework_tests.move +19 -0
- package/template/nextjs/sui-template/localnet/dubhe-framework/tests/storage.move +398 -0
- package/template/nextjs/sui-template/next-env.d.ts +5 -0
- package/template/nextjs/sui-template/next-i18next.config.js +6 -0
- package/template/nextjs/sui-template/next.config.js +15 -0
- package/template/nextjs/sui-template/package.json +84 -0
- package/template/nextjs/sui-template/postcss.config.js +6 -0
- package/template/nextjs/sui-template/public/discord.svg +9 -0
- package/template/nextjs/sui-template/public/fail.svg +12 -0
- package/template/nextjs/sui-template/public/favicon.ico +0 -0
- package/template/nextjs/sui-template/public/locales/de/common.json +8 -0
- package/template/nextjs/sui-template/public/locales/de/footer.json +3 -0
- package/template/nextjs/sui-template/public/locales/de/second-page.json +5 -0
- package/template/nextjs/sui-template/public/locales/en/common.json +8 -0
- package/template/nextjs/sui-template/public/locales/en/footer.json +3 -0
- package/template/nextjs/sui-template/public/locales/en/second-page.json +5 -0
- package/template/nextjs/sui-template/public/locales/zn/common.json +8 -0
- package/template/nextjs/sui-template/public/locales/zn/footer.json +3 -0
- package/template/nextjs/sui-template/public/locales/zn/second-page.json +5 -0
- package/template/nextjs/sui-template/public/logo.svg +1 -0
- package/template/nextjs/sui-template/public/medium.svg +9 -0
- package/template/nextjs/sui-template/public/successful.svg +11 -0
- package/template/nextjs/sui-template/public/telegram.svg +9 -0
- package/template/nextjs/sui-template/public/twitter.svg +9 -0
- package/template/nextjs/sui-template/scripts/checkBalance.ts +40 -0
- package/template/nextjs/sui-template/scripts/deployment/common.ts +60 -0
- package/template/nextjs/sui-template/scripts/deployment/localnet/deploy.ts +42 -0
- package/template/nextjs/sui-template/scripts/deployment/testnet/deploy.ts +48 -0
- package/template/nextjs/sui-template/scripts/deployment/types.ts +13 -0
- package/template/nextjs/sui-template/scripts/framework/common.ts +17 -0
- package/template/nextjs/sui-template/scripts/framework/deploy.ts +199 -0
- package/template/nextjs/sui-template/scripts/framework/parse-history.ts +76 -0
- package/template/nextjs/sui-template/scripts/framework/types.ts +8 -0
- package/template/nextjs/sui-template/scripts/generateAccount.ts +55 -0
- package/template/nextjs/sui-template/scripts/storeConfig.ts +61 -0
- package/template/nextjs/sui-template/scripts/waitNode.ts +9 -0
- package/template/nextjs/sui-template/src/chain/config.ts +7 -0
- package/template/nextjs/sui-template/src/components/Animation.tsx +80 -0
- package/template/nextjs/sui-template/src/components/Container.tsx +11 -0
- package/template/nextjs/sui-template/src/components/footer/index.tsx +138 -0
- package/template/nextjs/sui-template/src/components/head/index.tsx +14 -0
- package/template/nextjs/sui-template/src/components/header/index.tsx +173 -0
- package/template/nextjs/sui-template/src/components/pop_up_box/index.tsx +149 -0
- package/template/nextjs/sui-template/src/css/font-awesome.css +2337 -0
- package/template/nextjs/sui-template/src/css/font-awesome.min.css +4 -0
- package/template/nextjs/sui-template/src/fonts/FontAwesome.otf +0 -0
- package/template/nextjs/sui-template/src/fonts/fontawesome-webfont.eot +0 -0
- package/template/nextjs/sui-template/src/fonts/fontawesome-webfont.svg +2671 -0
- package/template/nextjs/sui-template/src/fonts/fontawesome-webfont.ttf +0 -0
- package/template/nextjs/sui-template/src/fonts/fontawesome-webfont.woff +0 -0
- package/template/nextjs/sui-template/src/fonts/fontawesome-webfont.woff2 +0 -0
- package/template/nextjs/sui-template/src/jotai/index.tsx +13 -0
- package/template/nextjs/sui-template/src/pages/_app.tsx +32 -0
- package/template/nextjs/sui-template/src/pages/home/index.tsx +147 -0
- package/template/nextjs/sui-template/src/pages/index.tsx +15 -0
- package/template/nextjs/sui-template/tailwind.config.js +56 -0
- package/template/nextjs/sui-template/tsconfig.json +35 -0
|
@@ -0,0 +1,875 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"__type__": "cc.SceneAsset",
|
|
4
|
+
"_name": "main",
|
|
5
|
+
"_objFlags": 0,
|
|
6
|
+
"__editorExtras__": {},
|
|
7
|
+
"_native": "",
|
|
8
|
+
"scene": {
|
|
9
|
+
"__id__": 1
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"__type__": "cc.Scene",
|
|
14
|
+
"_name": "main",
|
|
15
|
+
"_objFlags": 0,
|
|
16
|
+
"__editorExtras__": {},
|
|
17
|
+
"_parent": null,
|
|
18
|
+
"_children": [
|
|
19
|
+
{
|
|
20
|
+
"__id__": 2
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"_active": true,
|
|
24
|
+
"_components": [],
|
|
25
|
+
"_prefab": null,
|
|
26
|
+
"_lpos": {
|
|
27
|
+
"__type__": "cc.Vec3",
|
|
28
|
+
"x": 0,
|
|
29
|
+
"y": 0,
|
|
30
|
+
"z": 0
|
|
31
|
+
},
|
|
32
|
+
"_lrot": {
|
|
33
|
+
"__type__": "cc.Quat",
|
|
34
|
+
"x": 0,
|
|
35
|
+
"y": 0,
|
|
36
|
+
"z": 0,
|
|
37
|
+
"w": 1
|
|
38
|
+
},
|
|
39
|
+
"_lscale": {
|
|
40
|
+
"__type__": "cc.Vec3",
|
|
41
|
+
"x": 1,
|
|
42
|
+
"y": 1,
|
|
43
|
+
"z": 1
|
|
44
|
+
},
|
|
45
|
+
"_mobility": 0,
|
|
46
|
+
"_layer": 1073741824,
|
|
47
|
+
"_euler": {
|
|
48
|
+
"__type__": "cc.Vec3",
|
|
49
|
+
"x": 0,
|
|
50
|
+
"y": 0,
|
|
51
|
+
"z": 0
|
|
52
|
+
},
|
|
53
|
+
"autoReleaseAssets": false,
|
|
54
|
+
"_globals": {
|
|
55
|
+
"__id__": 20
|
|
56
|
+
},
|
|
57
|
+
"_id": "2e9c2eac-cfd6-47cb-979a-8b3a8d8e5970"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"__type__": "cc.Node",
|
|
61
|
+
"_name": "Canvas",
|
|
62
|
+
"_objFlags": 512,
|
|
63
|
+
"__editorExtras__": {},
|
|
64
|
+
"_parent": {
|
|
65
|
+
"__id__": 1
|
|
66
|
+
},
|
|
67
|
+
"_children": [
|
|
68
|
+
{
|
|
69
|
+
"__id__": 3
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
"_active": true,
|
|
73
|
+
"_components": [
|
|
74
|
+
{
|
|
75
|
+
"__id__": 16
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"__id__": 17
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"__id__": 18
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"__id__": 19
|
|
85
|
+
}
|
|
86
|
+
],
|
|
87
|
+
"_prefab": null,
|
|
88
|
+
"_lpos": {
|
|
89
|
+
"__type__": "cc.Vec3",
|
|
90
|
+
"x": 640,
|
|
91
|
+
"y": 360.00000000000006,
|
|
92
|
+
"z": 0
|
|
93
|
+
},
|
|
94
|
+
"_lrot": {
|
|
95
|
+
"__type__": "cc.Quat",
|
|
96
|
+
"x": 0,
|
|
97
|
+
"y": 0,
|
|
98
|
+
"z": 0,
|
|
99
|
+
"w": 1
|
|
100
|
+
},
|
|
101
|
+
"_lscale": {
|
|
102
|
+
"__type__": "cc.Vec3",
|
|
103
|
+
"x": 1,
|
|
104
|
+
"y": 1,
|
|
105
|
+
"z": 1
|
|
106
|
+
},
|
|
107
|
+
"_mobility": 0,
|
|
108
|
+
"_layer": 33554432,
|
|
109
|
+
"_euler": {
|
|
110
|
+
"__type__": "cc.Vec3",
|
|
111
|
+
"x": 0,
|
|
112
|
+
"y": 0,
|
|
113
|
+
"z": 0
|
|
114
|
+
},
|
|
115
|
+
"_id": "beI88Z2HpFELqR4T5EMHpg"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"__type__": "cc.Node",
|
|
119
|
+
"_name": "Camera",
|
|
120
|
+
"_objFlags": 512,
|
|
121
|
+
"__editorExtras__": {},
|
|
122
|
+
"_parent": {
|
|
123
|
+
"__id__": 2
|
|
124
|
+
},
|
|
125
|
+
"_children": [
|
|
126
|
+
{
|
|
127
|
+
"__id__": 4
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"__id__": 7
|
|
131
|
+
}
|
|
132
|
+
],
|
|
133
|
+
"_active": true,
|
|
134
|
+
"_components": [
|
|
135
|
+
{
|
|
136
|
+
"__id__": 15
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"_prefab": null,
|
|
140
|
+
"_lpos": {
|
|
141
|
+
"__type__": "cc.Vec3",
|
|
142
|
+
"x": 0,
|
|
143
|
+
"y": 0,
|
|
144
|
+
"z": 1000
|
|
145
|
+
},
|
|
146
|
+
"_lrot": {
|
|
147
|
+
"__type__": "cc.Quat",
|
|
148
|
+
"x": 0,
|
|
149
|
+
"y": 0,
|
|
150
|
+
"z": 0,
|
|
151
|
+
"w": 1
|
|
152
|
+
},
|
|
153
|
+
"_lscale": {
|
|
154
|
+
"__type__": "cc.Vec3",
|
|
155
|
+
"x": 1,
|
|
156
|
+
"y": 1,
|
|
157
|
+
"z": 1
|
|
158
|
+
},
|
|
159
|
+
"_mobility": 0,
|
|
160
|
+
"_layer": 1073741824,
|
|
161
|
+
"_euler": {
|
|
162
|
+
"__type__": "cc.Vec3",
|
|
163
|
+
"x": 0,
|
|
164
|
+
"y": 0,
|
|
165
|
+
"z": 0
|
|
166
|
+
},
|
|
167
|
+
"_id": "ebFwiq8gBFaYpqYbdoDODe"
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"__type__": "cc.Node",
|
|
171
|
+
"_name": "counter",
|
|
172
|
+
"_objFlags": 0,
|
|
173
|
+
"__editorExtras__": {},
|
|
174
|
+
"_parent": {
|
|
175
|
+
"__id__": 3
|
|
176
|
+
},
|
|
177
|
+
"_children": [],
|
|
178
|
+
"_active": true,
|
|
179
|
+
"_components": [
|
|
180
|
+
{
|
|
181
|
+
"__id__": 5
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"__id__": 6
|
|
185
|
+
}
|
|
186
|
+
],
|
|
187
|
+
"_prefab": null,
|
|
188
|
+
"_lpos": {
|
|
189
|
+
"__type__": "cc.Vec3",
|
|
190
|
+
"x": 0,
|
|
191
|
+
"y": 0,
|
|
192
|
+
"z": -1000
|
|
193
|
+
},
|
|
194
|
+
"_lrot": {
|
|
195
|
+
"__type__": "cc.Quat",
|
|
196
|
+
"x": 0,
|
|
197
|
+
"y": 0,
|
|
198
|
+
"z": 0,
|
|
199
|
+
"w": 1
|
|
200
|
+
},
|
|
201
|
+
"_lscale": {
|
|
202
|
+
"__type__": "cc.Vec3",
|
|
203
|
+
"x": 1,
|
|
204
|
+
"y": 1,
|
|
205
|
+
"z": 1
|
|
206
|
+
},
|
|
207
|
+
"_mobility": 0,
|
|
208
|
+
"_layer": 33554432,
|
|
209
|
+
"_euler": {
|
|
210
|
+
"__type__": "cc.Vec3",
|
|
211
|
+
"x": 0,
|
|
212
|
+
"y": 0,
|
|
213
|
+
"z": 0
|
|
214
|
+
},
|
|
215
|
+
"_id": "49BIMCyBtD7pneBfKepqL3"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"__type__": "cc.UITransform",
|
|
219
|
+
"_name": "",
|
|
220
|
+
"_objFlags": 0,
|
|
221
|
+
"__editorExtras__": {},
|
|
222
|
+
"node": {
|
|
223
|
+
"__id__": 4
|
|
224
|
+
},
|
|
225
|
+
"_enabled": true,
|
|
226
|
+
"__prefab": null,
|
|
227
|
+
"_contentSize": {
|
|
228
|
+
"__type__": "cc.Size",
|
|
229
|
+
"width": 93.37493561126372,
|
|
230
|
+
"height": 50.4
|
|
231
|
+
},
|
|
232
|
+
"_anchorPoint": {
|
|
233
|
+
"__type__": "cc.Vec2",
|
|
234
|
+
"x": 0.5,
|
|
235
|
+
"y": 0.5
|
|
236
|
+
},
|
|
237
|
+
"_id": "93+Xt/z59EVYCzuAmQsMwm"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"__type__": "cc.Label",
|
|
241
|
+
"_name": "",
|
|
242
|
+
"_objFlags": 0,
|
|
243
|
+
"__editorExtras__": {},
|
|
244
|
+
"node": {
|
|
245
|
+
"__id__": 4
|
|
246
|
+
},
|
|
247
|
+
"_enabled": true,
|
|
248
|
+
"__prefab": null,
|
|
249
|
+
"_customMaterial": null,
|
|
250
|
+
"_srcBlendFactor": 2,
|
|
251
|
+
"_dstBlendFactor": 4,
|
|
252
|
+
"_color": {
|
|
253
|
+
"__type__": "cc.Color",
|
|
254
|
+
"r": 255,
|
|
255
|
+
"g": 255,
|
|
256
|
+
"b": 255,
|
|
257
|
+
"a": 255
|
|
258
|
+
},
|
|
259
|
+
"_string": "Counter: 0",
|
|
260
|
+
"_horizontalAlign": 1,
|
|
261
|
+
"_verticalAlign": 1,
|
|
262
|
+
"_actualFontSize": 25.59375,
|
|
263
|
+
"_fontSize": 20,
|
|
264
|
+
"_fontFamily": "Arial",
|
|
265
|
+
"_lineHeight": 40,
|
|
266
|
+
"_overflow": 0,
|
|
267
|
+
"_enableWrapText": true,
|
|
268
|
+
"_font": null,
|
|
269
|
+
"_isSystemFontUsed": true,
|
|
270
|
+
"_spacingX": 0,
|
|
271
|
+
"_isItalic": false,
|
|
272
|
+
"_isBold": false,
|
|
273
|
+
"_isUnderline": false,
|
|
274
|
+
"_underlineHeight": 2,
|
|
275
|
+
"_cacheMode": 0,
|
|
276
|
+
"_id": "0bvUekP9ZPx6be5TZbaGnW"
|
|
277
|
+
},
|
|
278
|
+
{
|
|
279
|
+
"__type__": "cc.Node",
|
|
280
|
+
"_name": "add",
|
|
281
|
+
"_objFlags": 0,
|
|
282
|
+
"__editorExtras__": {},
|
|
283
|
+
"_parent": {
|
|
284
|
+
"__id__": 3
|
|
285
|
+
},
|
|
286
|
+
"_children": [
|
|
287
|
+
{
|
|
288
|
+
"__id__": 8
|
|
289
|
+
}
|
|
290
|
+
],
|
|
291
|
+
"_active": true,
|
|
292
|
+
"_components": [
|
|
293
|
+
{
|
|
294
|
+
"__id__": 11
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"__id__": 12
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"__id__": 13
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"_prefab": null,
|
|
304
|
+
"_lpos": {
|
|
305
|
+
"__type__": "cc.Vec3",
|
|
306
|
+
"x": 0,
|
|
307
|
+
"y": -169.099,
|
|
308
|
+
"z": 0
|
|
309
|
+
},
|
|
310
|
+
"_lrot": {
|
|
311
|
+
"__type__": "cc.Quat",
|
|
312
|
+
"x": 0,
|
|
313
|
+
"y": 0,
|
|
314
|
+
"z": 0,
|
|
315
|
+
"w": 1
|
|
316
|
+
},
|
|
317
|
+
"_lscale": {
|
|
318
|
+
"__type__": "cc.Vec3",
|
|
319
|
+
"x": 1,
|
|
320
|
+
"y": 1,
|
|
321
|
+
"z": 1
|
|
322
|
+
},
|
|
323
|
+
"_mobility": 0,
|
|
324
|
+
"_layer": 1073741824,
|
|
325
|
+
"_euler": {
|
|
326
|
+
"__type__": "cc.Vec3",
|
|
327
|
+
"x": 0,
|
|
328
|
+
"y": 0,
|
|
329
|
+
"z": 0
|
|
330
|
+
},
|
|
331
|
+
"_id": "44HSnhrrpKlbKYd1x84hOa"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"__type__": "cc.Node",
|
|
335
|
+
"_name": "Label",
|
|
336
|
+
"_objFlags": 512,
|
|
337
|
+
"__editorExtras__": {},
|
|
338
|
+
"_parent": {
|
|
339
|
+
"__id__": 7
|
|
340
|
+
},
|
|
341
|
+
"_children": [],
|
|
342
|
+
"_active": true,
|
|
343
|
+
"_components": [
|
|
344
|
+
{
|
|
345
|
+
"__id__": 9
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"__id__": 10
|
|
349
|
+
}
|
|
350
|
+
],
|
|
351
|
+
"_prefab": null,
|
|
352
|
+
"_lpos": {
|
|
353
|
+
"__type__": "cc.Vec3",
|
|
354
|
+
"x": 0,
|
|
355
|
+
"y": 0,
|
|
356
|
+
"z": 0
|
|
357
|
+
},
|
|
358
|
+
"_lrot": {
|
|
359
|
+
"__type__": "cc.Quat",
|
|
360
|
+
"x": 0,
|
|
361
|
+
"y": 0,
|
|
362
|
+
"z": 0,
|
|
363
|
+
"w": 1
|
|
364
|
+
},
|
|
365
|
+
"_lscale": {
|
|
366
|
+
"__type__": "cc.Vec3",
|
|
367
|
+
"x": 1,
|
|
368
|
+
"y": 1,
|
|
369
|
+
"z": 1
|
|
370
|
+
},
|
|
371
|
+
"_mobility": 0,
|
|
372
|
+
"_layer": 33554432,
|
|
373
|
+
"_euler": {
|
|
374
|
+
"__type__": "cc.Vec3",
|
|
375
|
+
"x": 0,
|
|
376
|
+
"y": 0,
|
|
377
|
+
"z": 0
|
|
378
|
+
},
|
|
379
|
+
"_id": "42ELpQzXxPWoMu2UnlVfyp"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"__type__": "cc.UITransform",
|
|
383
|
+
"_name": "",
|
|
384
|
+
"_objFlags": 0,
|
|
385
|
+
"__editorExtras__": {},
|
|
386
|
+
"node": {
|
|
387
|
+
"__id__": 8
|
|
388
|
+
},
|
|
389
|
+
"_enabled": true,
|
|
390
|
+
"__prefab": null,
|
|
391
|
+
"_contentSize": {
|
|
392
|
+
"__type__": "cc.Size",
|
|
393
|
+
"width": 100,
|
|
394
|
+
"height": 40
|
|
395
|
+
},
|
|
396
|
+
"_anchorPoint": {
|
|
397
|
+
"__type__": "cc.Vec2",
|
|
398
|
+
"x": 0.5,
|
|
399
|
+
"y": 0.5
|
|
400
|
+
},
|
|
401
|
+
"_id": "4a3hPN44VFqKxSGFJTAAzs"
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"__type__": "cc.Label",
|
|
405
|
+
"_name": "",
|
|
406
|
+
"_objFlags": 0,
|
|
407
|
+
"__editorExtras__": {},
|
|
408
|
+
"node": {
|
|
409
|
+
"__id__": 8
|
|
410
|
+
},
|
|
411
|
+
"_enabled": true,
|
|
412
|
+
"__prefab": null,
|
|
413
|
+
"_customMaterial": null,
|
|
414
|
+
"_srcBlendFactor": 2,
|
|
415
|
+
"_dstBlendFactor": 4,
|
|
416
|
+
"_color": {
|
|
417
|
+
"__type__": "cc.Color",
|
|
418
|
+
"r": 0,
|
|
419
|
+
"g": 0,
|
|
420
|
+
"b": 0,
|
|
421
|
+
"a": 255
|
|
422
|
+
},
|
|
423
|
+
"_string": "Increament",
|
|
424
|
+
"_horizontalAlign": 1,
|
|
425
|
+
"_verticalAlign": 1,
|
|
426
|
+
"_actualFontSize": 25.59375,
|
|
427
|
+
"_fontSize": 20,
|
|
428
|
+
"_fontFamily": "Arial",
|
|
429
|
+
"_lineHeight": 40,
|
|
430
|
+
"_overflow": 1,
|
|
431
|
+
"_enableWrapText": false,
|
|
432
|
+
"_font": null,
|
|
433
|
+
"_isSystemFontUsed": true,
|
|
434
|
+
"_spacingX": 0,
|
|
435
|
+
"_isItalic": false,
|
|
436
|
+
"_isBold": false,
|
|
437
|
+
"_isUnderline": false,
|
|
438
|
+
"_underlineHeight": 2,
|
|
439
|
+
"_cacheMode": 0,
|
|
440
|
+
"_id": "e1DHjheFxKALPkIbX8W0Ay"
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"__type__": "cc.UITransform",
|
|
444
|
+
"_name": "",
|
|
445
|
+
"_objFlags": 0,
|
|
446
|
+
"__editorExtras__": {},
|
|
447
|
+
"node": {
|
|
448
|
+
"__id__": 7
|
|
449
|
+
},
|
|
450
|
+
"_enabled": true,
|
|
451
|
+
"__prefab": null,
|
|
452
|
+
"_contentSize": {
|
|
453
|
+
"__type__": "cc.Size",
|
|
454
|
+
"width": 100,
|
|
455
|
+
"height": 40
|
|
456
|
+
},
|
|
457
|
+
"_anchorPoint": {
|
|
458
|
+
"__type__": "cc.Vec2",
|
|
459
|
+
"x": 0.5,
|
|
460
|
+
"y": 0.5
|
|
461
|
+
},
|
|
462
|
+
"_id": "8389fgQ+RO+pJK81/sW4mD"
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
"__type__": "cc.Sprite",
|
|
466
|
+
"_name": "",
|
|
467
|
+
"_objFlags": 0,
|
|
468
|
+
"__editorExtras__": {},
|
|
469
|
+
"node": {
|
|
470
|
+
"__id__": 7
|
|
471
|
+
},
|
|
472
|
+
"_enabled": true,
|
|
473
|
+
"__prefab": null,
|
|
474
|
+
"_customMaterial": null,
|
|
475
|
+
"_srcBlendFactor": 2,
|
|
476
|
+
"_dstBlendFactor": 4,
|
|
477
|
+
"_color": {
|
|
478
|
+
"__type__": "cc.Color",
|
|
479
|
+
"r": 255,
|
|
480
|
+
"g": 255,
|
|
481
|
+
"b": 255,
|
|
482
|
+
"a": 255
|
|
483
|
+
},
|
|
484
|
+
"_spriteFrame": {
|
|
485
|
+
"__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
|
|
486
|
+
"__expectedType__": "cc.SpriteFrame"
|
|
487
|
+
},
|
|
488
|
+
"_type": 1,
|
|
489
|
+
"_fillType": 0,
|
|
490
|
+
"_sizeMode": 0,
|
|
491
|
+
"_fillCenter": {
|
|
492
|
+
"__type__": "cc.Vec2",
|
|
493
|
+
"x": 0,
|
|
494
|
+
"y": 0
|
|
495
|
+
},
|
|
496
|
+
"_fillStart": 0,
|
|
497
|
+
"_fillRange": 0,
|
|
498
|
+
"_isTrimmedMode": true,
|
|
499
|
+
"_useGrayscale": false,
|
|
500
|
+
"_atlas": null,
|
|
501
|
+
"_id": "dcw1fdAipCSpG3db6zhCtN"
|
|
502
|
+
},
|
|
503
|
+
{
|
|
504
|
+
"__type__": "cc.Button",
|
|
505
|
+
"_name": "",
|
|
506
|
+
"_objFlags": 0,
|
|
507
|
+
"__editorExtras__": {},
|
|
508
|
+
"node": {
|
|
509
|
+
"__id__": 7
|
|
510
|
+
},
|
|
511
|
+
"_enabled": true,
|
|
512
|
+
"__prefab": null,
|
|
513
|
+
"clickEvents": [
|
|
514
|
+
{
|
|
515
|
+
"__id__": 14
|
|
516
|
+
}
|
|
517
|
+
],
|
|
518
|
+
"_interactable": true,
|
|
519
|
+
"_transition": 2,
|
|
520
|
+
"_normalColor": {
|
|
521
|
+
"__type__": "cc.Color",
|
|
522
|
+
"r": 214,
|
|
523
|
+
"g": 214,
|
|
524
|
+
"b": 214,
|
|
525
|
+
"a": 255
|
|
526
|
+
},
|
|
527
|
+
"_hoverColor": {
|
|
528
|
+
"__type__": "cc.Color",
|
|
529
|
+
"r": 211,
|
|
530
|
+
"g": 211,
|
|
531
|
+
"b": 211,
|
|
532
|
+
"a": 255
|
|
533
|
+
},
|
|
534
|
+
"_pressedColor": {
|
|
535
|
+
"__type__": "cc.Color",
|
|
536
|
+
"r": 255,
|
|
537
|
+
"g": 255,
|
|
538
|
+
"b": 255,
|
|
539
|
+
"a": 255
|
|
540
|
+
},
|
|
541
|
+
"_disabledColor": {
|
|
542
|
+
"__type__": "cc.Color",
|
|
543
|
+
"r": 124,
|
|
544
|
+
"g": 124,
|
|
545
|
+
"b": 124,
|
|
546
|
+
"a": 255
|
|
547
|
+
},
|
|
548
|
+
"_normalSprite": {
|
|
549
|
+
"__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
|
|
550
|
+
"__expectedType__": "cc.SpriteFrame"
|
|
551
|
+
},
|
|
552
|
+
"_hoverSprite": {
|
|
553
|
+
"__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
|
|
554
|
+
"__expectedType__": "cc.SpriteFrame"
|
|
555
|
+
},
|
|
556
|
+
"_pressedSprite": {
|
|
557
|
+
"__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
|
|
558
|
+
"__expectedType__": "cc.SpriteFrame"
|
|
559
|
+
},
|
|
560
|
+
"_disabledSprite": {
|
|
561
|
+
"__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
|
|
562
|
+
"__expectedType__": "cc.SpriteFrame"
|
|
563
|
+
},
|
|
564
|
+
"_duration": 0.1,
|
|
565
|
+
"_zoomScale": 1.2,
|
|
566
|
+
"_target": {
|
|
567
|
+
"__id__": 7
|
|
568
|
+
},
|
|
569
|
+
"_id": "20qHeuOz5IPJc0xQBA1iBg"
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"__type__": "cc.ClickEvent",
|
|
573
|
+
"target": {
|
|
574
|
+
"__id__": 2
|
|
575
|
+
},
|
|
576
|
+
"component": "",
|
|
577
|
+
"_componentId": "0b062ewcyVIG5yzMFXOgw6J",
|
|
578
|
+
"handler": "gameStart",
|
|
579
|
+
"customEventData": ""
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"__type__": "cc.Camera",
|
|
583
|
+
"_name": "",
|
|
584
|
+
"_objFlags": 0,
|
|
585
|
+
"__editorExtras__": {},
|
|
586
|
+
"node": {
|
|
587
|
+
"__id__": 3
|
|
588
|
+
},
|
|
589
|
+
"_enabled": true,
|
|
590
|
+
"__prefab": null,
|
|
591
|
+
"_projection": 0,
|
|
592
|
+
"_priority": 0,
|
|
593
|
+
"_fov": 45,
|
|
594
|
+
"_fovAxis": 0,
|
|
595
|
+
"_orthoHeight": 376.6544566544566,
|
|
596
|
+
"_near": 0,
|
|
597
|
+
"_far": 1000,
|
|
598
|
+
"_color": {
|
|
599
|
+
"__type__": "cc.Color",
|
|
600
|
+
"r": 0,
|
|
601
|
+
"g": 0,
|
|
602
|
+
"b": 0,
|
|
603
|
+
"a": 255
|
|
604
|
+
},
|
|
605
|
+
"_depth": 1,
|
|
606
|
+
"_stencil": 0,
|
|
607
|
+
"_clearFlags": 7,
|
|
608
|
+
"_rect": {
|
|
609
|
+
"__type__": "cc.Rect",
|
|
610
|
+
"x": 0,
|
|
611
|
+
"y": 0,
|
|
612
|
+
"width": 1,
|
|
613
|
+
"height": 1
|
|
614
|
+
},
|
|
615
|
+
"_aperture": 19,
|
|
616
|
+
"_shutter": 7,
|
|
617
|
+
"_iso": 0,
|
|
618
|
+
"_screenScale": 1,
|
|
619
|
+
"_visibility": 1108344832,
|
|
620
|
+
"_targetTexture": null,
|
|
621
|
+
"_postProcess": null,
|
|
622
|
+
"_usePostProcess": false,
|
|
623
|
+
"_cameraType": -1,
|
|
624
|
+
"_trackingType": 0,
|
|
625
|
+
"_id": "63WIch3o5BEYRlXzTT0oWc"
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"__type__": "cc.UITransform",
|
|
629
|
+
"_name": "",
|
|
630
|
+
"_objFlags": 0,
|
|
631
|
+
"__editorExtras__": {},
|
|
632
|
+
"node": {
|
|
633
|
+
"__id__": 2
|
|
634
|
+
},
|
|
635
|
+
"_enabled": true,
|
|
636
|
+
"__prefab": null,
|
|
637
|
+
"_contentSize": {
|
|
638
|
+
"__type__": "cc.Size",
|
|
639
|
+
"width": 1280,
|
|
640
|
+
"height": 720
|
|
641
|
+
},
|
|
642
|
+
"_anchorPoint": {
|
|
643
|
+
"__type__": "cc.Vec2",
|
|
644
|
+
"x": 0.5,
|
|
645
|
+
"y": 0.5
|
|
646
|
+
},
|
|
647
|
+
"_id": "d6rUX5yfhMlKoWX2bSbawx"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"__type__": "cc.Canvas",
|
|
651
|
+
"_name": "",
|
|
652
|
+
"_objFlags": 0,
|
|
653
|
+
"__editorExtras__": {},
|
|
654
|
+
"node": {
|
|
655
|
+
"__id__": 2
|
|
656
|
+
},
|
|
657
|
+
"_enabled": true,
|
|
658
|
+
"__prefab": null,
|
|
659
|
+
"_cameraComponent": {
|
|
660
|
+
"__id__": 15
|
|
661
|
+
},
|
|
662
|
+
"_alignCanvasWithScreen": true,
|
|
663
|
+
"_id": "12O/ljcVlEqLmVm3U2gEOQ"
|
|
664
|
+
},
|
|
665
|
+
{
|
|
666
|
+
"__type__": "cc.Widget",
|
|
667
|
+
"_name": "",
|
|
668
|
+
"_objFlags": 0,
|
|
669
|
+
"__editorExtras__": {},
|
|
670
|
+
"node": {
|
|
671
|
+
"__id__": 2
|
|
672
|
+
},
|
|
673
|
+
"_enabled": true,
|
|
674
|
+
"__prefab": null,
|
|
675
|
+
"_alignFlags": 45,
|
|
676
|
+
"_target": null,
|
|
677
|
+
"_left": 0,
|
|
678
|
+
"_right": 0,
|
|
679
|
+
"_top": 5.684341886080802e-14,
|
|
680
|
+
"_bottom": 5.684341886080802e-14,
|
|
681
|
+
"_horizontalCenter": 0,
|
|
682
|
+
"_verticalCenter": 0,
|
|
683
|
+
"_isAbsLeft": true,
|
|
684
|
+
"_isAbsRight": true,
|
|
685
|
+
"_isAbsTop": true,
|
|
686
|
+
"_isAbsBottom": true,
|
|
687
|
+
"_isAbsHorizontalCenter": true,
|
|
688
|
+
"_isAbsVerticalCenter": true,
|
|
689
|
+
"_originalWidth": 0,
|
|
690
|
+
"_originalHeight": 0,
|
|
691
|
+
"_alignMode": 2,
|
|
692
|
+
"_lockFlags": 0,
|
|
693
|
+
"_id": "c5V1EV8IpMtrIvY1OE9t2u"
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"__type__": "0b062ewcyVIG5yzMFXOgw6J",
|
|
697
|
+
"_name": "",
|
|
698
|
+
"_objFlags": 0,
|
|
699
|
+
"__editorExtras__": {},
|
|
700
|
+
"node": {
|
|
701
|
+
"__id__": 2
|
|
702
|
+
},
|
|
703
|
+
"_enabled": true,
|
|
704
|
+
"__prefab": null,
|
|
705
|
+
"_id": "ac/664R/VFc4Xih3B0oldc"
|
|
706
|
+
},
|
|
707
|
+
{
|
|
708
|
+
"__type__": "cc.SceneGlobals",
|
|
709
|
+
"ambient": {
|
|
710
|
+
"__id__": 21
|
|
711
|
+
},
|
|
712
|
+
"shadows": {
|
|
713
|
+
"__id__": 22
|
|
714
|
+
},
|
|
715
|
+
"_skybox": {
|
|
716
|
+
"__id__": 23
|
|
717
|
+
},
|
|
718
|
+
"fog": {
|
|
719
|
+
"__id__": 24
|
|
720
|
+
},
|
|
721
|
+
"octree": {
|
|
722
|
+
"__id__": 25
|
|
723
|
+
},
|
|
724
|
+
"skin": {
|
|
725
|
+
"__id__": 26
|
|
726
|
+
},
|
|
727
|
+
"lightProbeInfo": {
|
|
728
|
+
"__id__": 27
|
|
729
|
+
},
|
|
730
|
+
"bakedWithStationaryMainLight": false,
|
|
731
|
+
"bakedWithHighpLightmap": false
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"__type__": "cc.AmbientInfo",
|
|
735
|
+
"_skyColorHDR": {
|
|
736
|
+
"__type__": "cc.Vec4",
|
|
737
|
+
"x": 0,
|
|
738
|
+
"y": 0,
|
|
739
|
+
"z": 0,
|
|
740
|
+
"w": 0.520833125
|
|
741
|
+
},
|
|
742
|
+
"_skyColor": {
|
|
743
|
+
"__type__": "cc.Vec4",
|
|
744
|
+
"x": 0,
|
|
745
|
+
"y": 0,
|
|
746
|
+
"z": 0,
|
|
747
|
+
"w": 0.520833125
|
|
748
|
+
},
|
|
749
|
+
"_skyIllumHDR": 20000,
|
|
750
|
+
"_skyIllum": 20000,
|
|
751
|
+
"_groundAlbedoHDR": {
|
|
752
|
+
"__type__": "cc.Vec4",
|
|
753
|
+
"x": 0,
|
|
754
|
+
"y": 0,
|
|
755
|
+
"z": 0,
|
|
756
|
+
"w": 0
|
|
757
|
+
},
|
|
758
|
+
"_groundAlbedo": {
|
|
759
|
+
"__type__": "cc.Vec4",
|
|
760
|
+
"x": 0,
|
|
761
|
+
"y": 0,
|
|
762
|
+
"z": 0,
|
|
763
|
+
"w": 0
|
|
764
|
+
},
|
|
765
|
+
"_skyColorLDR": {
|
|
766
|
+
"__type__": "cc.Vec4",
|
|
767
|
+
"x": 0.2,
|
|
768
|
+
"y": 0.5,
|
|
769
|
+
"z": 0.8,
|
|
770
|
+
"w": 1
|
|
771
|
+
},
|
|
772
|
+
"_skyIllumLDR": 20000,
|
|
773
|
+
"_groundAlbedoLDR": {
|
|
774
|
+
"__type__": "cc.Vec4",
|
|
775
|
+
"x": 0.2,
|
|
776
|
+
"y": 0.2,
|
|
777
|
+
"z": 0.2,
|
|
778
|
+
"w": 1
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"__type__": "cc.ShadowsInfo",
|
|
783
|
+
"_enabled": false,
|
|
784
|
+
"_type": 0,
|
|
785
|
+
"_normal": {
|
|
786
|
+
"__type__": "cc.Vec3",
|
|
787
|
+
"x": 0,
|
|
788
|
+
"y": 1,
|
|
789
|
+
"z": 0
|
|
790
|
+
},
|
|
791
|
+
"_distance": 0,
|
|
792
|
+
"_shadowColor": {
|
|
793
|
+
"__type__": "cc.Color",
|
|
794
|
+
"r": 76,
|
|
795
|
+
"g": 76,
|
|
796
|
+
"b": 76,
|
|
797
|
+
"a": 255
|
|
798
|
+
},
|
|
799
|
+
"_maxReceived": 4,
|
|
800
|
+
"_size": {
|
|
801
|
+
"__type__": "cc.Vec2",
|
|
802
|
+
"x": 512,
|
|
803
|
+
"y": 512
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
{
|
|
807
|
+
"__type__": "cc.SkyboxInfo",
|
|
808
|
+
"_envLightingType": 0,
|
|
809
|
+
"_envmapHDR": null,
|
|
810
|
+
"_envmap": null,
|
|
811
|
+
"_envmapLDR": null,
|
|
812
|
+
"_diffuseMapHDR": null,
|
|
813
|
+
"_diffuseMapLDR": null,
|
|
814
|
+
"_enabled": false,
|
|
815
|
+
"_useHDR": true,
|
|
816
|
+
"_editableMaterial": null,
|
|
817
|
+
"_reflectionHDR": null,
|
|
818
|
+
"_reflectionLDR": null,
|
|
819
|
+
"_rotationAngle": 0
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"__type__": "cc.FogInfo",
|
|
823
|
+
"_type": 0,
|
|
824
|
+
"_fogColor": {
|
|
825
|
+
"__type__": "cc.Color",
|
|
826
|
+
"r": 200,
|
|
827
|
+
"g": 200,
|
|
828
|
+
"b": 200,
|
|
829
|
+
"a": 255
|
|
830
|
+
},
|
|
831
|
+
"_enabled": false,
|
|
832
|
+
"_fogDensity": 0.3,
|
|
833
|
+
"_fogStart": 0.5,
|
|
834
|
+
"_fogEnd": 300,
|
|
835
|
+
"_fogAtten": 5,
|
|
836
|
+
"_fogTop": 1.5,
|
|
837
|
+
"_fogRange": 1.2,
|
|
838
|
+
"_accurate": false
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"__type__": "cc.OctreeInfo",
|
|
842
|
+
"_enabled": false,
|
|
843
|
+
"_minPos": {
|
|
844
|
+
"__type__": "cc.Vec3",
|
|
845
|
+
"x": -1024,
|
|
846
|
+
"y": -1024,
|
|
847
|
+
"z": -1024
|
|
848
|
+
},
|
|
849
|
+
"_maxPos": {
|
|
850
|
+
"__type__": "cc.Vec3",
|
|
851
|
+
"x": 1024,
|
|
852
|
+
"y": 1024,
|
|
853
|
+
"z": 1024
|
|
854
|
+
},
|
|
855
|
+
"_depth": 8
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"__type__": "cc.SkinInfo",
|
|
859
|
+
"_enabled": true,
|
|
860
|
+
"_blurRadius": 0.01,
|
|
861
|
+
"_sssIntensity": 3
|
|
862
|
+
},
|
|
863
|
+
{
|
|
864
|
+
"__type__": "cc.LightProbeInfo",
|
|
865
|
+
"_giScale": 1,
|
|
866
|
+
"_giSamples": 1024,
|
|
867
|
+
"_bounces": 2,
|
|
868
|
+
"_reduceRinging": 0,
|
|
869
|
+
"_showProbe": true,
|
|
870
|
+
"_showWireframe": true,
|
|
871
|
+
"_showConvex": false,
|
|
872
|
+
"_data": null,
|
|
873
|
+
"_lightProbeSphereVolume": 1
|
|
874
|
+
}
|
|
875
|
+
]
|