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.
Files changed (361) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +9 -0
  3. package/dist/index.mjs +100 -0
  4. package/index.js +3 -0
  5. package/package.json +46 -0
  6. package/template/101/aptos-template/.dockerignore +7 -0
  7. package/template/101/aptos-template/.eslintrc.json +3 -0
  8. package/template/101/aptos-template/.prettierrc +8 -0
  9. package/template/101/aptos-template/Dockerfile +56 -0
  10. package/template/101/aptos-template/LICENSE +674 -0
  11. package/template/101/aptos-template/README.md +14 -0
  12. package/template/101/aptos-template/contracts/counter/Move.toml +16 -0
  13. package/template/101/aptos-template/contracts/counter/sources/codegen/eps/events.move +34 -0
  14. package/template/101/aptos-template/contracts/counter/sources/codegen/eps/world.move +65 -0
  15. package/template/101/aptos-template/contracts/counter/sources/codegen/init.move +17 -0
  16. package/template/101/aptos-template/contracts/counter/sources/codegen/schemas/counter.move +59 -0
  17. package/template/101/aptos-template/contracts/counter/sources/entity_key.move +31 -0
  18. package/template/101/aptos-template/contracts/counter/sources/script/deploy_hook.move +19 -0
  19. package/template/101/aptos-template/contracts/counter/sources/system/counter_system.move +11 -0
  20. package/template/101/aptos-template/dubhe.config.ts +13 -0
  21. package/template/101/aptos-template/jest.config.ts +17 -0
  22. package/template/101/aptos-template/next-env.d.ts +5 -0
  23. package/template/101/aptos-template/next-i18next.config.js +6 -0
  24. package/template/101/aptos-template/next.config.js +15 -0
  25. package/template/101/aptos-template/package.json +83 -0
  26. package/template/101/aptos-template/postcss.config.js +6 -0
  27. package/template/101/aptos-template/public/discord.svg +9 -0
  28. package/template/101/aptos-template/public/fail.svg +12 -0
  29. package/template/101/aptos-template/public/favicon.ico +0 -0
  30. package/template/101/aptos-template/public/locales/de/common.json +8 -0
  31. package/template/101/aptos-template/public/locales/de/footer.json +3 -0
  32. package/template/101/aptos-template/public/locales/de/second-page.json +5 -0
  33. package/template/101/aptos-template/public/locales/en/common.json +8 -0
  34. package/template/101/aptos-template/public/locales/en/footer.json +3 -0
  35. package/template/101/aptos-template/public/locales/en/second-page.json +5 -0
  36. package/template/101/aptos-template/public/locales/zn/common.json +8 -0
  37. package/template/101/aptos-template/public/locales/zn/footer.json +3 -0
  38. package/template/101/aptos-template/public/locales/zn/second-page.json +5 -0
  39. package/template/101/aptos-template/public/logo.svg +1 -0
  40. package/template/101/aptos-template/public/medium.svg +9 -0
  41. package/template/101/aptos-template/public/successful.svg +11 -0
  42. package/template/101/aptos-template/public/telegram.svg +9 -0
  43. package/template/101/aptos-template/public/twitter.svg +9 -0
  44. package/template/101/aptos-template/scripts/formatAccount.ts +35 -0
  45. package/template/101/aptos-template/scripts/generateAccount.ts +25 -0
  46. package/template/101/aptos-template/scripts/storeConfig.ts +54 -0
  47. package/template/101/aptos-template/src/chain/config.ts +7 -0
  48. package/template/101/aptos-template/src/css/font-awesome.css +2337 -0
  49. package/template/101/aptos-template/src/css/font-awesome.min.css +4 -0
  50. package/template/101/aptos-template/src/fonts/FontAwesome.otf +0 -0
  51. package/template/101/aptos-template/src/fonts/fontawesome-webfont.eot +0 -0
  52. package/template/101/aptos-template/src/fonts/fontawesome-webfont.svg +2671 -0
  53. package/template/101/aptos-template/src/fonts/fontawesome-webfont.ttf +0 -0
  54. package/template/101/aptos-template/src/fonts/fontawesome-webfont.woff +0 -0
  55. package/template/101/aptos-template/src/fonts/fontawesome-webfont.woff2 +0 -0
  56. package/template/101/aptos-template/src/jotai/index.tsx +12 -0
  57. package/template/101/aptos-template/src/pages/_app.tsx +9 -0
  58. package/template/101/aptos-template/src/pages/home/index.tsx +78 -0
  59. package/template/101/aptos-template/src/pages/index.tsx +12 -0
  60. package/template/101/aptos-template/tailwind.config.js +56 -0
  61. package/template/101/aptos-template/tsconfig.json +25 -0
  62. package/template/101/sui-template/.dockerignore +7 -0
  63. package/template/101/sui-template/.eslintrc.json +3 -0
  64. package/template/101/sui-template/.prettierrc +8 -0
  65. package/template/101/sui-template/Dockerfile +52 -0
  66. package/template/101/sui-template/LICENSE +674 -0
  67. package/template/101/sui-template/README.md +14 -0
  68. package/template/101/sui-template/contracts/counter/Move.toml +13 -0
  69. package/template/101/sui-template/contracts/counter/sources/codegen/dapp_key.move +16 -0
  70. package/template/101/sui-template/contracts/counter/sources/codegen/schemas/counter.move +50 -0
  71. package/template/101/sui-template/contracts/counter/sources/script/deploy_hook.move +67 -0
  72. package/template/101/sui-template/contracts/counter/sources/system/counter.move +11 -0
  73. package/template/101/sui-template/docker-compose.yaml +29 -0
  74. package/template/101/sui-template/dubhe.config.ts +14 -0
  75. package/template/101/sui-template/jest.config.ts +17 -0
  76. package/template/101/sui-template/localnet/dubhe-framework/Move.toml +39 -0
  77. package/template/101/sui-template/localnet/dubhe-framework/README.md +18 -0
  78. package/template/101/sui-template/localnet/dubhe-framework/sources/access_control.move +35 -0
  79. package/template/101/sui-template/localnet/dubhe-framework/sources/events.move +23 -0
  80. package/template/101/sui-template/localnet/dubhe-framework/sources/resource_id.move +22 -0
  81. package/template/101/sui-template/localnet/dubhe-framework/sources/resource_types.move +18 -0
  82. package/template/101/sui-template/localnet/dubhe-framework/sources/schema.move +36 -0
  83. package/template/101/sui-template/localnet/dubhe-framework/sources/schemas/dapps/dapps.move +73 -0
  84. package/template/101/sui-template/localnet/dubhe-framework/sources/schemas/dapps/metadata.move +96 -0
  85. package/template/101/sui-template/localnet/dubhe-framework/sources/storages/double_map.move +156 -0
  86. package/template/101/sui-template/localnet/dubhe-framework/sources/storages/map.move +159 -0
  87. package/template/101/sui-template/localnet/dubhe-framework/sources/storages/value.move +100 -0
  88. package/template/101/sui-template/localnet/dubhe-framework/sources/systems/dapps.move +90 -0
  89. package/template/101/sui-template/localnet/dubhe-framework/sources/world.move +81 -0
  90. package/template/101/sui-template/localnet/dubhe-framework/tests/dapp.move +16 -0
  91. package/template/101/sui-template/localnet/dubhe-framework/tests/init.move +6 -0
  92. package/template/101/sui-template/localnet/dubhe-framework/tests/obelisk_framework_tests.move +19 -0
  93. package/template/101/sui-template/localnet/dubhe-framework/tests/storage.move +398 -0
  94. package/template/101/sui-template/next-env.d.ts +5 -0
  95. package/template/101/sui-template/next-i18next.config.js +6 -0
  96. package/template/101/sui-template/next.config.js +15 -0
  97. package/template/101/sui-template/package.json +82 -0
  98. package/template/101/sui-template/postcss.config.js +6 -0
  99. package/template/101/sui-template/public/discord.svg +9 -0
  100. package/template/101/sui-template/public/fail.svg +12 -0
  101. package/template/101/sui-template/public/favicon.ico +0 -0
  102. package/template/101/sui-template/public/locales/de/common.json +8 -0
  103. package/template/101/sui-template/public/locales/de/footer.json +3 -0
  104. package/template/101/sui-template/public/locales/de/second-page.json +5 -0
  105. package/template/101/sui-template/public/locales/en/common.json +8 -0
  106. package/template/101/sui-template/public/locales/en/footer.json +3 -0
  107. package/template/101/sui-template/public/locales/en/second-page.json +5 -0
  108. package/template/101/sui-template/public/locales/zn/common.json +8 -0
  109. package/template/101/sui-template/public/locales/zn/footer.json +3 -0
  110. package/template/101/sui-template/public/locales/zn/second-page.json +5 -0
  111. package/template/101/sui-template/public/logo.svg +1 -0
  112. package/template/101/sui-template/public/medium.svg +9 -0
  113. package/template/101/sui-template/public/successful.svg +11 -0
  114. package/template/101/sui-template/public/telegram.svg +9 -0
  115. package/template/101/sui-template/public/twitter.svg +9 -0
  116. package/template/101/sui-template/scripts/checkBalance.ts +40 -0
  117. package/template/101/sui-template/scripts/deployment/common.ts +60 -0
  118. package/template/101/sui-template/scripts/deployment/localnet/deploy.ts +42 -0
  119. package/template/101/sui-template/scripts/deployment/testnet/deploy.ts +48 -0
  120. package/template/101/sui-template/scripts/deployment/types.ts +13 -0
  121. package/template/101/sui-template/scripts/framework/common.ts +17 -0
  122. package/template/101/sui-template/scripts/framework/deploy.ts +199 -0
  123. package/template/101/sui-template/scripts/framework/parse-history.ts +76 -0
  124. package/template/101/sui-template/scripts/framework/types.ts +8 -0
  125. package/template/101/sui-template/scripts/generateAccount.ts +55 -0
  126. package/template/101/sui-template/scripts/storeConfig.ts +61 -0
  127. package/template/101/sui-template/scripts/waitNode.ts +9 -0
  128. package/template/101/sui-template/src/chain/config.ts +7 -0
  129. package/template/101/sui-template/src/css/font-awesome.css +2337 -0
  130. package/template/101/sui-template/src/css/font-awesome.min.css +4 -0
  131. package/template/101/sui-template/src/fonts/FontAwesome.otf +0 -0
  132. package/template/101/sui-template/src/fonts/fontawesome-webfont.eot +0 -0
  133. package/template/101/sui-template/src/fonts/fontawesome-webfont.svg +2671 -0
  134. package/template/101/sui-template/src/fonts/fontawesome-webfont.ttf +0 -0
  135. package/template/101/sui-template/src/fonts/fontawesome-webfont.woff +0 -0
  136. package/template/101/sui-template/src/fonts/fontawesome-webfont.woff2 +0 -0
  137. package/template/101/sui-template/src/jotai/index.tsx +12 -0
  138. package/template/101/sui-template/src/pages/_app.tsx +9 -0
  139. package/template/101/sui-template/src/pages/home/index.tsx +82 -0
  140. package/template/101/sui-template/src/pages/index.tsx +14 -0
  141. package/template/101/sui-template/tailwind.config.js +56 -0
  142. package/template/101/sui-template/tsconfig.json +25 -0
  143. package/template/cocos/aptos-template/.creator/asset-template/typescript/Custom Script Template Help Documentation.url +2 -0
  144. package/template/cocos/aptos-template/README.md +11 -0
  145. package/template/cocos/aptos-template/assets/Scripts/aptos.ts +87 -0
  146. package/template/cocos/aptos-template/assets/Scripts/aptos.ts.meta +9 -0
  147. package/template/cocos/aptos-template/assets/Scripts/chain/config.ts +12 -0
  148. package/template/cocos/aptos-template/assets/Scripts/chain/config.ts.meta +9 -0
  149. package/template/cocos/aptos-template/assets/Scripts/chain/key.ts.meta +9 -0
  150. package/template/cocos/aptos-template/assets/Scripts/chain.meta +9 -0
  151. package/template/cocos/aptos-template/assets/Scripts/dubhe.config.ts +13 -0
  152. package/template/cocos/aptos-template/assets/Scripts/dubhe.config.ts.meta +9 -0
  153. package/template/cocos/aptos-template/assets/Scripts.meta +9 -0
  154. package/template/cocos/aptos-template/assets/lib/dubhe.js +22281 -0
  155. package/template/cocos/aptos-template/assets/lib/obelisk.js +22281 -0
  156. package/template/cocos/aptos-template/assets/lib/obelisk.js.meta +15 -0
  157. package/template/cocos/aptos-template/assets/lib.meta +12 -0
  158. package/template/cocos/aptos-template/assets/main.scene +875 -0
  159. package/template/cocos/aptos-template/assets/main.scene.meta +11 -0
  160. package/template/cocos/aptos-template/contracts/counter/Move.toml +16 -0
  161. package/template/cocos/aptos-template/contracts/counter/sources/codegen/eps/events.move +34 -0
  162. package/template/cocos/aptos-template/contracts/counter/sources/codegen/eps/world.move +65 -0
  163. package/template/cocos/aptos-template/contracts/counter/sources/codegen/init.move +17 -0
  164. package/template/cocos/aptos-template/contracts/counter/sources/codegen/schemas/counter.move +59 -0
  165. package/template/cocos/aptos-template/contracts/counter/sources/entity_key.move +31 -0
  166. package/template/cocos/aptos-template/contracts/counter/sources/script/deploy_hook.move +19 -0
  167. package/template/cocos/aptos-template/contracts/counter/sources/system/counter_system.move +11 -0
  168. package/template/cocos/aptos-template/package.json +39 -0
  169. package/template/cocos/aptos-template/scripts/formatAccount.ts +35 -0
  170. package/template/cocos/aptos-template/scripts/generateAccount.ts +25 -0
  171. package/template/cocos/aptos-template/scripts/storeConfig.ts +68 -0
  172. package/template/cocos/aptos-template/settings/v2/packages/builder.json +3 -0
  173. package/template/cocos/aptos-template/settings/v2/packages/cocos-service.json +23 -0
  174. package/template/cocos/aptos-template/settings/v2/packages/device.json +3 -0
  175. package/template/cocos/aptos-template/settings/v2/packages/engine.json +150 -0
  176. package/template/cocos/aptos-template/settings/v2/packages/information.json +23 -0
  177. package/template/cocos/aptos-template/settings/v2/packages/program.json +3 -0
  178. package/template/cocos/aptos-template/settings/v2/packages/project.json +3 -0
  179. package/template/cocos/aptos-template/tsconfig.json +12 -0
  180. package/template/cocos/sui-template/.creator/asset-template/typescript/Custom Script Template Help Documentation.url +2 -0
  181. package/template/cocos/sui-template/README.md +11 -0
  182. package/template/cocos/sui-template/assets/Scripts/chain/config.ts +12 -0
  183. package/template/cocos/sui-template/assets/Scripts/chain/config.ts.meta +9 -0
  184. package/template/cocos/sui-template/assets/Scripts/chain/key.ts.meta +9 -0
  185. package/template/cocos/sui-template/assets/Scripts/chain.meta +9 -0
  186. package/template/cocos/sui-template/assets/Scripts/dubhe.config.ts +13 -0
  187. package/template/cocos/sui-template/assets/Scripts/dubhe.config.ts.meta +9 -0
  188. package/template/cocos/sui-template/assets/Scripts/sui.ts +120 -0
  189. package/template/cocos/sui-template/assets/Scripts/sui.ts.meta +9 -0
  190. package/template/cocos/sui-template/assets/Scripts.meta +12 -0
  191. package/template/cocos/sui-template/assets/lib/dubhe.js +55694 -0
  192. package/template/cocos/sui-template/assets/lib/dubhe.js.meta +15 -0
  193. package/template/cocos/sui-template/assets/lib.meta +12 -0
  194. package/template/cocos/sui-template/assets/main.scene +875 -0
  195. package/template/cocos/sui-template/assets/main.scene.meta +11 -0
  196. package/template/cocos/sui-template/contracts/counter/Move.toml +13 -0
  197. package/template/cocos/sui-template/contracts/counter/sources/codegen/dapp_key.move +16 -0
  198. package/template/cocos/sui-template/contracts/counter/sources/codegen/schemas/counter.move +50 -0
  199. package/template/cocos/sui-template/contracts/counter/sources/script/deploy_hook.move +67 -0
  200. package/template/cocos/sui-template/contracts/counter/sources/system/counter.move +11 -0
  201. package/template/cocos/sui-template/docker-compose.yaml +18 -0
  202. package/template/cocos/sui-template/package.json +27 -0
  203. package/template/cocos/sui-template/scripts/generateAccount.ts +55 -0
  204. package/template/cocos/sui-template/scripts/storeConfig.ts +75 -0
  205. package/template/cocos/sui-template/settings/v2/packages/builder.json +3 -0
  206. package/template/cocos/sui-template/settings/v2/packages/cocos-service.json +23 -0
  207. package/template/cocos/sui-template/settings/v2/packages/device.json +3 -0
  208. package/template/cocos/sui-template/settings/v2/packages/engine.json +150 -0
  209. package/template/cocos/sui-template/settings/v2/packages/information.json +23 -0
  210. package/template/cocos/sui-template/settings/v2/packages/program.json +3 -0
  211. package/template/cocos/sui-template/settings/v2/packages/project.json +3 -0
  212. package/template/cocos/sui-template/tsconfig.json +19 -0
  213. package/template/nextjs/aptos-template/.dockerignore +7 -0
  214. package/template/nextjs/aptos-template/.eslintrc.json +3 -0
  215. package/template/nextjs/aptos-template/.prettierrc +8 -0
  216. package/template/nextjs/aptos-template/Dockerfile +56 -0
  217. package/template/nextjs/aptos-template/LICENSE +674 -0
  218. package/template/nextjs/aptos-template/README.md +13 -0
  219. package/template/nextjs/aptos-template/contracts/counter/Move.toml +16 -0
  220. package/template/nextjs/aptos-template/contracts/counter/sources/codegen/eps/events.move +34 -0
  221. package/template/nextjs/aptos-template/contracts/counter/sources/codegen/eps/world.move +65 -0
  222. package/template/nextjs/aptos-template/contracts/counter/sources/codegen/init.move +17 -0
  223. package/template/nextjs/aptos-template/contracts/counter/sources/codegen/schemas/counter.move +59 -0
  224. package/template/nextjs/aptos-template/contracts/counter/sources/entity_key.move +31 -0
  225. package/template/nextjs/aptos-template/contracts/counter/sources/script/deploy_hook.move +19 -0
  226. package/template/nextjs/aptos-template/contracts/counter/sources/system/counter_system.move +11 -0
  227. package/template/nextjs/aptos-template/dubhe.config.ts +13 -0
  228. package/template/nextjs/aptos-template/jest.config.ts +17 -0
  229. package/template/nextjs/aptos-template/next-env.d.ts +5 -0
  230. package/template/nextjs/aptos-template/next-i18next.config.js +6 -0
  231. package/template/nextjs/aptos-template/next.config.js +15 -0
  232. package/template/nextjs/aptos-template/package.json +82 -0
  233. package/template/nextjs/aptos-template/postcss.config.js +6 -0
  234. package/template/nextjs/aptos-template/public/discord.svg +9 -0
  235. package/template/nextjs/aptos-template/public/fail.svg +12 -0
  236. package/template/nextjs/aptos-template/public/favicon.ico +0 -0
  237. package/template/nextjs/aptos-template/public/locales/de/common.json +8 -0
  238. package/template/nextjs/aptos-template/public/locales/de/footer.json +3 -0
  239. package/template/nextjs/aptos-template/public/locales/de/second-page.json +5 -0
  240. package/template/nextjs/aptos-template/public/locales/en/common.json +8 -0
  241. package/template/nextjs/aptos-template/public/locales/en/footer.json +3 -0
  242. package/template/nextjs/aptos-template/public/locales/en/second-page.json +5 -0
  243. package/template/nextjs/aptos-template/public/locales/zn/common.json +8 -0
  244. package/template/nextjs/aptos-template/public/locales/zn/footer.json +3 -0
  245. package/template/nextjs/aptos-template/public/locales/zn/second-page.json +5 -0
  246. package/template/nextjs/aptos-template/public/logo.svg +1 -0
  247. package/template/nextjs/aptos-template/public/medium.svg +9 -0
  248. package/template/nextjs/aptos-template/public/successful.svg +11 -0
  249. package/template/nextjs/aptos-template/public/telegram.svg +9 -0
  250. package/template/nextjs/aptos-template/public/twitter.svg +9 -0
  251. package/template/nextjs/aptos-template/scripts/formatAccount.ts +35 -0
  252. package/template/nextjs/aptos-template/scripts/generateAccount.ts +25 -0
  253. package/template/nextjs/aptos-template/scripts/storeConfig.ts +54 -0
  254. package/template/nextjs/aptos-template/src/chain/config.ts +7 -0
  255. package/template/nextjs/aptos-template/src/components/Animation.tsx +80 -0
  256. package/template/nextjs/aptos-template/src/components/Container.tsx +11 -0
  257. package/template/nextjs/aptos-template/src/components/footer/index.tsx +138 -0
  258. package/template/nextjs/aptos-template/src/components/head/index.tsx +14 -0
  259. package/template/nextjs/aptos-template/src/components/header/index.tsx +173 -0
  260. package/template/nextjs/aptos-template/src/components/pop_up_box/index.tsx +149 -0
  261. package/template/nextjs/aptos-template/src/css/font-awesome.css +2337 -0
  262. package/template/nextjs/aptos-template/src/css/font-awesome.min.css +4 -0
  263. package/template/nextjs/aptos-template/src/fonts/FontAwesome.otf +0 -0
  264. package/template/nextjs/aptos-template/src/fonts/fontawesome-webfont.eot +0 -0
  265. package/template/nextjs/aptos-template/src/fonts/fontawesome-webfont.svg +2671 -0
  266. package/template/nextjs/aptos-template/src/fonts/fontawesome-webfont.ttf +0 -0
  267. package/template/nextjs/aptos-template/src/fonts/fontawesome-webfont.woff +0 -0
  268. package/template/nextjs/aptos-template/src/fonts/fontawesome-webfont.woff2 +0 -0
  269. package/template/nextjs/aptos-template/src/jotai/index.tsx +13 -0
  270. package/template/nextjs/aptos-template/src/pages/_app.tsx +32 -0
  271. package/template/nextjs/aptos-template/src/pages/home/index.tsx +112 -0
  272. package/template/nextjs/aptos-template/src/pages/index.tsx +15 -0
  273. package/template/nextjs/aptos-template/tailwind.config.js +59 -0
  274. package/template/nextjs/aptos-template/tsconfig.json +35 -0
  275. package/template/nextjs/sui-template/.dockerignore +7 -0
  276. package/template/nextjs/sui-template/.eslintrc.json +3 -0
  277. package/template/nextjs/sui-template/.prettierrc +8 -0
  278. package/template/nextjs/sui-template/Dockerfile +52 -0
  279. package/template/nextjs/sui-template/LICENSE +674 -0
  280. package/template/nextjs/sui-template/README.md +13 -0
  281. package/template/nextjs/sui-template/contracts/counter/Move.toml +13 -0
  282. package/template/nextjs/sui-template/contracts/counter/sources/codegen/dapp_key.move +16 -0
  283. package/template/nextjs/sui-template/contracts/counter/sources/codegen/schemas/counter.move +50 -0
  284. package/template/nextjs/sui-template/contracts/counter/sources/script/deploy_hook.move +67 -0
  285. package/template/nextjs/sui-template/contracts/counter/sources/system/counter.move +11 -0
  286. package/template/nextjs/sui-template/docker-compose.yaml +29 -0
  287. package/template/nextjs/sui-template/dubhe.config.ts +14 -0
  288. package/template/nextjs/sui-template/jest.config.ts +17 -0
  289. package/template/nextjs/sui-template/localnet/dubhe-framework/Move.toml +39 -0
  290. package/template/nextjs/sui-template/localnet/dubhe-framework/README.md +18 -0
  291. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/access_control.move +35 -0
  292. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/events.move +23 -0
  293. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/resource_id.move +22 -0
  294. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/resource_types.move +18 -0
  295. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/schema.move +36 -0
  296. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/schemas/dapps/dapps.move +73 -0
  297. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/schemas/dapps/metadata.move +96 -0
  298. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/storages/double_map.move +156 -0
  299. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/storages/map.move +159 -0
  300. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/storages/value.move +100 -0
  301. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/systems/dapps.move +90 -0
  302. package/template/nextjs/sui-template/localnet/dubhe-framework/sources/world.move +81 -0
  303. package/template/nextjs/sui-template/localnet/dubhe-framework/tests/dapp.move +16 -0
  304. package/template/nextjs/sui-template/localnet/dubhe-framework/tests/init.move +6 -0
  305. package/template/nextjs/sui-template/localnet/dubhe-framework/tests/obelisk_framework_tests.move +19 -0
  306. package/template/nextjs/sui-template/localnet/dubhe-framework/tests/storage.move +398 -0
  307. package/template/nextjs/sui-template/next-env.d.ts +5 -0
  308. package/template/nextjs/sui-template/next-i18next.config.js +6 -0
  309. package/template/nextjs/sui-template/next.config.js +15 -0
  310. package/template/nextjs/sui-template/package.json +84 -0
  311. package/template/nextjs/sui-template/postcss.config.js +6 -0
  312. package/template/nextjs/sui-template/public/discord.svg +9 -0
  313. package/template/nextjs/sui-template/public/fail.svg +12 -0
  314. package/template/nextjs/sui-template/public/favicon.ico +0 -0
  315. package/template/nextjs/sui-template/public/locales/de/common.json +8 -0
  316. package/template/nextjs/sui-template/public/locales/de/footer.json +3 -0
  317. package/template/nextjs/sui-template/public/locales/de/second-page.json +5 -0
  318. package/template/nextjs/sui-template/public/locales/en/common.json +8 -0
  319. package/template/nextjs/sui-template/public/locales/en/footer.json +3 -0
  320. package/template/nextjs/sui-template/public/locales/en/second-page.json +5 -0
  321. package/template/nextjs/sui-template/public/locales/zn/common.json +8 -0
  322. package/template/nextjs/sui-template/public/locales/zn/footer.json +3 -0
  323. package/template/nextjs/sui-template/public/locales/zn/second-page.json +5 -0
  324. package/template/nextjs/sui-template/public/logo.svg +1 -0
  325. package/template/nextjs/sui-template/public/medium.svg +9 -0
  326. package/template/nextjs/sui-template/public/successful.svg +11 -0
  327. package/template/nextjs/sui-template/public/telegram.svg +9 -0
  328. package/template/nextjs/sui-template/public/twitter.svg +9 -0
  329. package/template/nextjs/sui-template/scripts/checkBalance.ts +40 -0
  330. package/template/nextjs/sui-template/scripts/deployment/common.ts +60 -0
  331. package/template/nextjs/sui-template/scripts/deployment/localnet/deploy.ts +42 -0
  332. package/template/nextjs/sui-template/scripts/deployment/testnet/deploy.ts +48 -0
  333. package/template/nextjs/sui-template/scripts/deployment/types.ts +13 -0
  334. package/template/nextjs/sui-template/scripts/framework/common.ts +17 -0
  335. package/template/nextjs/sui-template/scripts/framework/deploy.ts +199 -0
  336. package/template/nextjs/sui-template/scripts/framework/parse-history.ts +76 -0
  337. package/template/nextjs/sui-template/scripts/framework/types.ts +8 -0
  338. package/template/nextjs/sui-template/scripts/generateAccount.ts +55 -0
  339. package/template/nextjs/sui-template/scripts/storeConfig.ts +61 -0
  340. package/template/nextjs/sui-template/scripts/waitNode.ts +9 -0
  341. package/template/nextjs/sui-template/src/chain/config.ts +7 -0
  342. package/template/nextjs/sui-template/src/components/Animation.tsx +80 -0
  343. package/template/nextjs/sui-template/src/components/Container.tsx +11 -0
  344. package/template/nextjs/sui-template/src/components/footer/index.tsx +138 -0
  345. package/template/nextjs/sui-template/src/components/head/index.tsx +14 -0
  346. package/template/nextjs/sui-template/src/components/header/index.tsx +173 -0
  347. package/template/nextjs/sui-template/src/components/pop_up_box/index.tsx +149 -0
  348. package/template/nextjs/sui-template/src/css/font-awesome.css +2337 -0
  349. package/template/nextjs/sui-template/src/css/font-awesome.min.css +4 -0
  350. package/template/nextjs/sui-template/src/fonts/FontAwesome.otf +0 -0
  351. package/template/nextjs/sui-template/src/fonts/fontawesome-webfont.eot +0 -0
  352. package/template/nextjs/sui-template/src/fonts/fontawesome-webfont.svg +2671 -0
  353. package/template/nextjs/sui-template/src/fonts/fontawesome-webfont.ttf +0 -0
  354. package/template/nextjs/sui-template/src/fonts/fontawesome-webfont.woff +0 -0
  355. package/template/nextjs/sui-template/src/fonts/fontawesome-webfont.woff2 +0 -0
  356. package/template/nextjs/sui-template/src/jotai/index.tsx +13 -0
  357. package/template/nextjs/sui-template/src/pages/_app.tsx +32 -0
  358. package/template/nextjs/sui-template/src/pages/home/index.tsx +147 -0
  359. package/template/nextjs/sui-template/src/pages/index.tsx +15 -0
  360. package/template/nextjs/sui-template/tailwind.config.js +56 -0
  361. 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.388671875,
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": 20,
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": 20,
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": "1aea1REPTpJDrS8orfWBsAB",
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": 360,
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__": "1aea1REPTpJDrS8orfWBsAB",
697
+ "_name": "",
698
+ "_objFlags": 0,
699
+ "__editorExtras__": {},
700
+ "node": {
701
+ "__id__": 2
702
+ },
703
+ "_enabled": true,
704
+ "__prefab": null,
705
+ "_id": "61u4WcWPhLub2hKFiVXmWN"
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
+ ]