Skip to content

Commit 9b67d9c

Browse files
committed
multi color gradient tool (modified, original addon from penguinmod)
1 parent c843b15 commit 9b67d9c

6 files changed

Lines changed: 879 additions & 1 deletion

File tree

src/addons/addons.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ const addons = [
8282
'tw-disable-vibration',
8383
'tw-disable-cloud-variables',
8484
'tw-disable-compiler',
85-
'editor-stepping'
85+
'editor-stepping',
86+
'paint-gradient-maker'
8687
];
8788

8889
const newAddons = [
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/* generated by pull.js */
2+
const manifest = {
3+
"name": "Costume Gradient Editor",
4+
"description": "Adds a custom gradient maker to the costume editor, available next to the other gradient options.",
5+
"credits": [
6+
{
7+
"name": "SharkPool",
8+
"link": "https://github.com/SharkPool-SP/"
9+
}
10+
],
11+
"userscripts": [
12+
{
13+
"url": "userscript.js"
14+
}
15+
],
16+
"tags": ["editor", "recommended"],
17+
"enabledByDefault": true,
18+
"dynamicEnable": true,
19+
"dynamicDisable": false
20+
};
21+
export default manifest;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/* generated by pull.js */
2+
import _js from "./userscript.js";
3+
export const resources = {
4+
"userscript.js": _js,
5+
};

0 commit comments

Comments
 (0)