Add a hook event for users to respond to when PlaceableObject data is pasted onto a layer
Hook Signature
Hooks.on("paste<PlaceableObject>", (originals, toCreate) => {});
Example Usage
// Always paste as hidden
Hooks.on("pasteToken", (originals, toCreate) => {
for ( let d of toCreate ) {
d.hidden = true;
}
});
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information