├── 2.x_vorsion ├── dating.js ├── game.js ├── main.js └── updateDemo.zip ├── README.md ├── hall ├── .gitignore ├── assets │ ├── button_blue_big.png │ ├── button_blue_big.png.meta │ ├── hall.fire │ ├── hall.fire.meta │ ├── hall.js │ └── hall.js.meta ├── creator.d.ts ├── jsconfig.json ├── project.json └── settings │ ├── builder.json │ └── project.json └── subgame ├── .gitignore ├── 1.sh ├── README.md ├── assets ├── Scene.meta ├── Scene │ ├── helloworld.fire │ └── helloworld.fire.meta ├── Script.meta ├── Script │ ├── HelloWorld.js │ └── HelloWorld.js.meta ├── Texture.meta └── Texture │ ├── HelloWorld.png │ ├── HelloWorld.png.meta │ ├── singleColor.png │ └── singleColor.png.meta ├── creator.d.ts ├── dating.js ├── jsconfig.json ├── main.js ├── project.json ├── settings ├── builder.json ├── builder.panel.json └── project.json ├── template-banner.png ├── template.json ├── test.txt ├── version_generator.bat └── version_generator.js /2.x_vorsion/dating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/2.x_vorsion/dating.js -------------------------------------------------------------------------------- /2.x_vorsion/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/2.x_vorsion/game.js -------------------------------------------------------------------------------- /2.x_vorsion/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/2.x_vorsion/main.js -------------------------------------------------------------------------------- /2.x_vorsion/updateDemo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/2.x_vorsion/updateDemo.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/README.md -------------------------------------------------------------------------------- /hall/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/.gitignore -------------------------------------------------------------------------------- /hall/assets/button_blue_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/assets/button_blue_big.png -------------------------------------------------------------------------------- /hall/assets/button_blue_big.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/assets/button_blue_big.png.meta -------------------------------------------------------------------------------- /hall/assets/hall.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/assets/hall.fire -------------------------------------------------------------------------------- /hall/assets/hall.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/assets/hall.fire.meta -------------------------------------------------------------------------------- /hall/assets/hall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/assets/hall.js -------------------------------------------------------------------------------- /hall/assets/hall.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/assets/hall.js.meta -------------------------------------------------------------------------------- /hall/creator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/creator.d.ts -------------------------------------------------------------------------------- /hall/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/jsconfig.json -------------------------------------------------------------------------------- /hall/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/project.json -------------------------------------------------------------------------------- /hall/settings/builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/settings/builder.json -------------------------------------------------------------------------------- /hall/settings/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/hall/settings/project.json -------------------------------------------------------------------------------- /subgame/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/.gitignore -------------------------------------------------------------------------------- /subgame/1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/1.sh -------------------------------------------------------------------------------- /subgame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/README.md -------------------------------------------------------------------------------- /subgame/assets/Scene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Scene.meta -------------------------------------------------------------------------------- /subgame/assets/Scene/helloworld.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Scene/helloworld.fire -------------------------------------------------------------------------------- /subgame/assets/Scene/helloworld.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Scene/helloworld.fire.meta -------------------------------------------------------------------------------- /subgame/assets/Script.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Script.meta -------------------------------------------------------------------------------- /subgame/assets/Script/HelloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Script/HelloWorld.js -------------------------------------------------------------------------------- /subgame/assets/Script/HelloWorld.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Script/HelloWorld.js.meta -------------------------------------------------------------------------------- /subgame/assets/Texture.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Texture.meta -------------------------------------------------------------------------------- /subgame/assets/Texture/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Texture/HelloWorld.png -------------------------------------------------------------------------------- /subgame/assets/Texture/HelloWorld.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Texture/HelloWorld.png.meta -------------------------------------------------------------------------------- /subgame/assets/Texture/singleColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Texture/singleColor.png -------------------------------------------------------------------------------- /subgame/assets/Texture/singleColor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/assets/Texture/singleColor.png.meta -------------------------------------------------------------------------------- /subgame/creator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/creator.d.ts -------------------------------------------------------------------------------- /subgame/dating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/dating.js -------------------------------------------------------------------------------- /subgame/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/jsconfig.json -------------------------------------------------------------------------------- /subgame/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/main.js -------------------------------------------------------------------------------- /subgame/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/project.json -------------------------------------------------------------------------------- /subgame/settings/builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/settings/builder.json -------------------------------------------------------------------------------- /subgame/settings/builder.panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/settings/builder.panel.json -------------------------------------------------------------------------------- /subgame/settings/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/settings/project.json -------------------------------------------------------------------------------- /subgame/template-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/template-banner.png -------------------------------------------------------------------------------- /subgame/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/template.json -------------------------------------------------------------------------------- /subgame/test.txt: -------------------------------------------------------------------------------- 1 | 1550286841232.01 -------------------------------------------------------------------------------- /subgame/version_generator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/version_generator.bat -------------------------------------------------------------------------------- /subgame/version_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leo501/HallAndGames/HEAD/subgame/version_generator.js --------------------------------------------------------------------------------