hytopia 0.1.0
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.md +69 -0
- package/README.md +49 -0
- package/assets/audio/music/cave.mp3 +0 -0
- package/assets/audio/music/desert.mp3 +0 -0
- package/assets/audio/music/end.mp3 +0 -0
- package/assets/audio/music/jungle.mp3 +0 -0
- package/assets/audio/music/nether.mp3 +0 -0
- package/assets/audio/music/night.mp3 +0 -0
- package/assets/audio/music/night2.mp3 +0 -0
- package/assets/audio/music/overworld.mp3 +0 -0
- package/assets/audio/music/snow.mp3 +0 -0
- package/assets/audio/sfx/damage.wav +0 -0
- package/assets/cubemaps/skybox/+x.png +0 -0
- package/assets/cubemaps/skybox/+y.png +0 -0
- package/assets/cubemaps/skybox/+z.png +0 -0
- package/assets/cubemaps/skybox/-x.png +0 -0
- package/assets/cubemaps/skybox/-y.png +0 -0
- package/assets/cubemaps/skybox/-z.png +0 -0
- package/assets/models/player.gltf +1 -0
- package/assets/models/spider.gltf +1 -0
- package/assets/models/zombie.gltf +1 -0
- package/assets/textures/bricks.png +0 -0
- package/assets/textures/clay.png +0 -0
- package/assets/textures/diamond_ore.png +0 -0
- package/assets/textures/dirt.png +0 -0
- package/assets/textures/dragons_stone.png +0 -0
- package/assets/textures/glass.png +0 -0
- package/assets/textures/grass/+x.png +0 -0
- package/assets/textures/grass/+y.png +0 -0
- package/assets/textures/grass/+z.png +0 -0
- package/assets/textures/grass/-x.png +0 -0
- package/assets/textures/grass/-y.png +0 -0
- package/assets/textures/grass/-z.png +0 -0
- package/assets/textures/grass.png +0 -0
- package/assets/textures/gravel.png +0 -0
- package/assets/textures/ice.png +0 -0
- package/assets/textures/infected_shadowrock.png +0 -0
- package/assets/textures/log_side.png +0 -0
- package/assets/textures/log_top.png +0 -0
- package/assets/textures/mossy_coblestone.png +0 -0
- package/assets/textures/nuit.png +0 -0
- package/assets/textures/oak_leaves.png +0 -0
- package/assets/textures/oak_planks.png +0 -0
- package/assets/textures/sand.png +0 -0
- package/assets/textures/shadowrock.png +0 -0
- package/assets/textures/stone.png +0 -0
- package/assets/textures/stone_bricks.png +0 -0
- package/assets/textures/void_sand.png +0 -0
- package/assets/textures/water_still.png +0 -0
- package/docs/assets/banner.png +0 -0
- package/examples/payload/assets/world.json +7179 -0
- package/examples/payload/index.ts +0 -0
- package/examples/zombies/index.ts +0 -0
- package/package.json +51 -0
- package/server.d.ts +1120 -0
- package/server.js +269 -0
- package/tsdoc-metadata.json +11 -0
| 
            File without changes
         | 
| 
            File without changes
         | 
    
        package/package.json
    ADDED
    
    | @@ -0,0 +1,51 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "name": "hytopia",
         | 
| 3 | 
            +
              "version": "0.1.0",
         | 
| 4 | 
            +
              "description": "The HYTOPIA SDK makes it easy for developers to create multiplayer games on the HYTOPIA platform using JavaScript or TypeScript.",
         | 
| 5 | 
            +
              "main": "server.js",
         | 
| 6 | 
            +
              "directories": {
         | 
| 7 | 
            +
                "doc": "docs",
         | 
| 8 | 
            +
                "example": "examples"
         | 
| 9 | 
            +
              },
         | 
| 10 | 
            +
              "scripts": {
         | 
| 11 | 
            +
                "test": "echo \"Error: no test specified\" && exit 1",
         | 
| 12 | 
            +
                "start": "node server.js"
         | 
| 13 | 
            +
              },
         | 
| 14 | 
            +
              "repository": {
         | 
| 15 | 
            +
                "type": "git",
         | 
| 16 | 
            +
                "url": "git+https://github.com/hytopiagg/sdk.git"
         | 
| 17 | 
            +
              },
         | 
| 18 | 
            +
              "keywords": [
         | 
| 19 | 
            +
                "hytopia",
         | 
| 20 | 
            +
                "multiplayer",
         | 
| 21 | 
            +
                "games",
         | 
| 22 | 
            +
                "game",
         | 
| 23 | 
            +
                "sdk",
         | 
| 24 | 
            +
                "mmo",
         | 
| 25 | 
            +
                "mmorpg",
         | 
| 26 | 
            +
                "engine",
         | 
| 27 | 
            +
                "ugc",
         | 
| 28 | 
            +
                "platform",
         | 
| 29 | 
            +
                "voxel",
         | 
| 30 | 
            +
                "blocks",
         | 
| 31 | 
            +
                "game-engine",
         | 
| 32 | 
            +
                "game-maker",
         | 
| 33 | 
            +
                "build-games",
         | 
| 34 | 
            +
                "create-games",
         | 
| 35 | 
            +
                "game-builder",
         | 
| 36 | 
            +
                "game-server",
         | 
| 37 | 
            +
                "multiplayer-game",
         | 
| 38 | 
            +
                "minecraft",
         | 
| 39 | 
            +
                "bukkit",
         | 
| 40 | 
            +
                "spigot",
         | 
| 41 | 
            +
                "roblox",
         | 
| 42 | 
            +
                "recroom"
         | 
| 43 | 
            +
              ],
         | 
| 44 | 
            +
              "author": "HYTOPIA, Inc.",
         | 
| 45 | 
            +
              "license": "SEE LICENSE IN LICENSE.md",
         | 
| 46 | 
            +
              "types": "./server.d.ts",
         | 
| 47 | 
            +
              "bugs": {
         | 
| 48 | 
            +
                "url": "https://github.com/hytopiagg/sdk/issues"
         | 
| 49 | 
            +
              },
         | 
| 50 | 
            +
              "homepage": "https://github.com/hytopiagg/sdk#readme"
         | 
| 51 | 
            +
            }
         |