Skip to content

Commit

Permalink
Add more enum values to the easing property
Browse files Browse the repository at this point in the history
These are all known values, aside from the five that was given.
  • Loading branch information
r4isen1920 committed Nov 6, 2023
1 parent f17ed89 commit 31b6ea9
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion source/resource/ui/elements/properties/easing.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,40 @@
"description": "The easing of the animation.",
"anyOf": [
{
"enum": ["spring", "in_sine", "linear", "in_quint", "out_cubic"]
"enum": [
"linear",
"spring",
"in_quad",
"out_quad",
"in_out_quad",
"in_cubic",
"out_cubic",
"in_out_cubic",
"in_quart",
"out_quart",
"in_out_quart",
"in_quint",
"out_quint",
"in_out_quint",
"in_sine",
"out_sine",
"in_out_sine",
"in_expo",
"out_expo",
"in_out_expo",
"in_circ",
"out_circ",
"in_out_circ",
"in_bounce",
"out_bounce",
"in_out_bounce",
"in_back",
"out_back",
"in_out_back",
"in_elastic",
"out_elastic",
"in_out_elastic"
]
},
{
"$ref": "../../general/item_ref.json"
Expand Down

0 comments on commit 31b6ea9

Please sign in to comment.