diff --git a/.gitignore b/.gitignore index eff0bb3..0b4fb20 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ ffmpeg.exe gifsupport/js/ gifsupport/*.map resources/custom +package-lock.json \ No newline at end of file diff --git a/config.default.json b/config.default.json index 9a6db49..948b395 100644 --- a/config.default.json +++ b/config.default.json @@ -21,6 +21,21 @@ "offset": 530 } } + }, + "chicken": { + "src": "./resources/Chicken.png", + "z": 0, + "anchor": { + "x": { + "position": 50, + "offset": 475, + "size": 600 + }, + "y": { + "position": 100, + "offset": 530 + } + } }, "turtle": { "src": "./resources/TurtleTemplate.png", @@ -82,6 +97,43 @@ } } }, + "cat": [ + { + "src": "./resources/CatEars.png", + "z": 2, + "anchor": { + "x": { + "position": 50, + "offset": 300, + "size": 500 + }, + "y": { + "position": 100, + "offset": 550, + "size": 500 + } + }, + "attributes": { + "globalCompositeOperation": "destination-in" + } + }, + { + "src": "./resources/CatEars.png", + "z": 2, + "anchor": { + "x": { + "position": 0, + "offset": 0, + "size": 600 + }, + "y": { + "position": 0, + "offset": 0, + "size": 565 + } + } + } + ], "space": [ { "src": "./resources/AstronautMask.png", @@ -464,6 +516,23 @@ } }, "filter": "pride" + }, + "transpride": { + "src": "./resources/TransPrideOverlay.png", + "z": 2, + "anchor": { + "x": { + "position": 0, + "offset": 0, + "size": 512 + }, + "y": { + "position": 0, + "offset": 0, + "size": 512 + } + }, + "filter": "pride" }, "couch": [ { diff --git a/resources/CatEars.png b/resources/CatEars.png new file mode 100644 index 0000000..3566e00 Binary files /dev/null and b/resources/CatEars.png differ diff --git a/resources/Chicken.png b/resources/Chicken.png new file mode 100644 index 0000000..463e274 Binary files /dev/null and b/resources/Chicken.png differ diff --git a/resources/TransPrideOverlay.png b/resources/TransPrideOverlay.png new file mode 100644 index 0000000..870dbd2 Binary files /dev/null and b/resources/TransPrideOverlay.png differ