Quick Start
Installation
Section titled “Installation”-
Download the latest release from GitHub.
-
Move the downloaded file to a directory of your choice.
-
Rename
hybroid-xxxxxx-xxxxxx
tohybroid
(or fromhybroid-windows-xxxxxx.exe
tohybroid.exe
on Windows). -
Go to settings and add the directory to your PATH.
-
Run this command in your terminal:
hybroid -v
The console output should look something like this:
> hybroid -vhybroid-live version 0.1.0
And voilà! You are ready to create your first project!
Setting up VS Code
Section titled “Setting up VS Code”-
Download and install VS Code or a fork like VSCodium, Cursor or Windsurf.
-
Download the Hybroid Live extension from GitHub.
-
Press
Ctrl+Shift+P
and typeInstall from VSIX
.
The extension will be released to the Visual Studio Code Marketplace in the future.
Setting up ppl-utils
Section titled “Setting up ppl-utils”Since Hybroid Live is a language for PewPew Live, it requires ppl-utils to be installed as well.
Creating the project
Section titled “Creating the project”Creating a project in Hybroid Live is trivial. Navigate to a directory of your choice and use:
hybroid init --package hello-world --name "hello, world!" --output out
package
is the name of the package, name
is the name of the level, and output
is the output directory.