Skip to content

Commit cc6293e

Browse files
authored
maybe add easing types (first addon to possibly use select?)
1 parent 6849396 commit cc6293e

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

src/addons/addons/editor-animations/_manifest_entry.js

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,37 @@ const manifest = {
4949
"min": 1,
5050
"default": 100,
5151
"max": 500
52-
}
52+
},
53+
{
54+
"id": "animationType",
55+
"name": "Animation Type",
56+
"type": "select",
57+
"dynamic": true,
58+
"default": "default",
59+
"potentialValues": [
60+
{ "id": "default", "name": "Default" },
61+
{ "id": "easeIn", "name": "Ease In" },
62+
{ "id": "easeOut", "name": "Ease Out" },
63+
{ "id": "easeInOut", "name": "Ease In Out" },
64+
{ "id": "smoothStep", "name": "Smooth Step" },
65+
{ "id": "fastInSlowOut", "name": "Fast In Slow Out" },
66+
{ "id": "sineIn", "name": "Sine In" },
67+
{ "id": "sineOut", "name": "Sine Out" },
68+
{ "id": "sineInOut", "name": "Sine In Out" },
69+
{ "id": "quadIn", "name": "Quadratic In" },
70+
{ "id": "quadOut", "name": "Quadratic Out" },
71+
{ "id": "quadInOut", "name": "Quadratic In Out" },
72+
{ "id": "cubicIn", "name": "Cubic In" },
73+
{ "id": "cubicOut", "name": "Cubic Out" },
74+
{ "id": "cubicInOut", "name": "Cubic In Out" },
75+
{ "id": "quartIn", "name": "Quartic In" },
76+
{ "id": "quartOut", "name": "Quartic Out" },
77+
{ "id": "quartInOut", "name": "Quartic In Out" },
78+
{ "id": "quintIn", "name": "Quintic In" },
79+
{ "id": "quintOut", "name": "Quintic Out" },
80+
{ "id": "quintInOut", "name": "Quintic In Out" }
81+
]
82+
},
5383
],
5484
"userscripts": [
5585
{

0 commit comments

Comments
 (0)