Skip to content

Simple addon compiler for Minecraft: Bedrock Edition

Notifications You must be signed in to change notification settings

Kiber2009/Mcbesc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mcbesc

Minecraft: Bedrock Edition Simple Compiler

Warning

Supports Windows only

Usage

Tip

Add Mcbesc to the PATH for ease of use

Mcbesc build [project_file]

The default path to project is .\mcbesc.json

Project file

{
    "addons": [
        {
            "name": "main",
            "packs": [
                {
                    "path": "./BP",
                    "jsBuild": {
                        "typescript": true
                    }
                },
                {
                    "path": "./RP"
                }
            ]
        },
        {
            "name": "patch",
            "packs": [
                {
                    "path": "./BP_patch",
                    "jsBuild": {
                        "typescript": true
                    }
                }
            ]
        }
    ],
    "outputDir": "./build"
}
  • addons: List of addons
    • name: Name of compiled file (without .mcaddon or .mcpack)
    • packs: List of packs in addon
    • path: Path to pack directory
    • jsBuild: Currently unused
  • outputDir: Path to output directory

Releases

No releases published

Packages

No packages published

Languages