A simple TypeScript template for PlayCanvas that can also sync with your playcanvas.com project
This template uses the playcanvas-sync tool to push files to your PlayCanvas project and requires a little bit of setup with .pcconfig
and pcconfig.json
.
- Copy
.pcconfig
to your home directory (Mac:/Users/<username>
, Windows:C:/User/<username>
)..pcconfig
has been preconfigured to look for a config file in the current working directory which will be this project's folder (more information here). - Make a copy of
pcconfig.template.json
and rename topcconfig.json
. This is needed to configure playcanvas-sync to upload the file to correct PlayCanvas Editor project. - Complete/Update the following properties in
pcconfig.json
using these instructions:PLAYCANVAS_API_KEY
- Instructions to create an API keyPLAYCANVAS_PROJECT_ID
- Where to find the project IDPLAYCANVAS_BRANCH_ID
Where to find the branch ID
- On the command line, run
npm install
to install the packages. - On the command line, run the npm script
npm run watch-push
. - This will watch the
src
folder for changes, compile intobuild/main.bundle.js
and if successful, upload to your playcanvas.com project.
Please note, if you are adding new pc.ScriptTypes
or attributes to existing ones, you will need to manually parse the script after upload in the PlayCanvas Editor. Please read this for more details.
Command | Description |
---|---|
npm run build |
Compiles tsc files and builds to build/main.bundle.js |
npm run watch |
Compiles tsc files on code changes and builds to build/main.bundle.js |
npm run push |
Uploads build/main.bundle.js to playcanvas.com project |
npm run build-push |
Performs build and push npm scripts |
npm run watch-push |
Performs watch and push npm scripts |