Creating a script
Important information about creating scripts
When creating a script, at the head (beginning) of the file, you must include script metadata. This is simply the script's name, and your name.
Simply follow this format:
/*
name: [SCRIPT NAME]
author: [YOUR NAME]
*/
import { } from './breeze_defs';
Last updated