commands - DauntlessStudio/Bedrock-Developments GitHub Wiki

Commands

Comprehensive list of all commands, with example uses.

General Usage

CLI to assist Minecraft Bedrock Development. This is the root command, and all other commands are subcommands of this. At the root, you can specify certain paramaters that are globally used, like the paths to the Behavior Pack and Resource Pack, or the namespace used for an addon project.

In most use cases, the --rpath and --bpath are not needed, as when used within a project, the paths will be automatically determined.

The root command has the version and help arguments.

Usage: bed [options] [command]

Options:
  --rpath <rp>               path to resource pack
  --bpath <bp>               path to behavior pack
  --addon <addon namespace>  namespace for addon content as <team_name>_<project_name>
  -V, --version              output the version number
  -h, --help                 display help for command

Commands:
  new                        creates new bedrock files
  entity                     modifies bedrock entities
  world                      tools for working with worlds
  format                     project formatting commands

Example(s)


bed -V

This outputs the current version of the tool, such as 1.0.0.


bed -h

This outputs the basic help, listing the available options and subcommands.

 

⚠️ **GitHub.com Fallback** ⚠️