Quick Start
Installation (& Updating)
Section titled “Installation (& Updating)”Run this command in your terminal:
curl -fsSL https://hybroid.pewpew.live/install.sh | shRun this command in PowerShell:
irm https://hybroid.pewpew.live/install.ps1 | iexIf PowerShell blocks the script, run this once to allow it for your user:
Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope ProcessThen, run this command in your terminal:
hybroid -vThe console output should look something like this:
> hybroid -vhybroid-live version 0.2.0-alphaAnd 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 (VSIX file) or Visual Studio Marketplace.
-
(VSIX-only) Press
Cmd+Shift+PorCtrl+Shift+Pand 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 outpackage is the name of the package, name is the name of the level, and output is the output directory.