Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
kinbei committed Jan 22, 2024
1 parent 17979a8 commit 8118ca7
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pkg/ant.rmlui/src/css/PropertyParserAnimation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,36 +24,47 @@ static const std::unordered_map<std::string, Keyword> keywords = {
{"all", {Keyword::ALL}},
{"alternate", {Keyword::ALTERNATE}},
{"infinite", {Keyword::INFINITE}},
{"back", {Keyword::TWEEN, Tween::BackIn}},
{"back-in", {Keyword::TWEEN, Tween::BackIn}},
{"back-out", {Keyword::TWEEN, Tween::BackOut}},
{"back-in-out", {Keyword::TWEEN, Tween::BackInOut}},
{"bounce", {Keyword::TWEEN, Tween::BounceIn}},
{"bounce-in", {Keyword::TWEEN, Tween::BounceIn}},
{"bounce-out", {Keyword::TWEEN, Tween::BounceOut}},
{"bounce-in-out", {Keyword::TWEEN, Tween::BounceInOut}},
{"circular", {Keyword::TWEEN, Tween::CircularIn}},
{"circular-in", {Keyword::TWEEN, Tween::CircularIn}},
{"circular-out", {Keyword::TWEEN, Tween::CircularOut}},
{"circular-in-out", {Keyword::TWEEN, Tween::CircularInOut}},
{"cubic", {Keyword::TWEEN, Tween::CubicIn}},
{"cubic-in", {Keyword::TWEEN, Tween::CubicIn}},
{"cubic-out", {Keyword::TWEEN, Tween::CubicOut}},
{"cubic-in-out", {Keyword::TWEEN, Tween::CubicInOut}},
{"elastic", {Keyword::TWEEN, Tween::ElasticIn}},
{"elastic-in", {Keyword::TWEEN, Tween::ElasticIn}},
{"elastic-out", {Keyword::TWEEN, Tween::ElasticOut}},
{"elastic-in-out", {Keyword::TWEEN, Tween::ElasticInOut}},
{"exponential", {Keyword::TWEEN, Tween::ExponentialIn}},
{"exponential-in", {Keyword::TWEEN, Tween::ExponentialIn}},
{"exponential-out", {Keyword::TWEEN, Tween::ExponentialOut}},
{"exponential-in-out", {Keyword::TWEEN, Tween::ExponentialInOut}},
{"linear", {Keyword::TWEEN, Tween::LinearIn}},
{"linear-in", {Keyword::TWEEN, Tween::LinearIn}},
{"linear-out", {Keyword::TWEEN, Tween::LinearOut}},
{"linear-in-out", {Keyword::TWEEN, Tween::LinearInOut}},
{"quadratic", {Keyword::TWEEN, Tween::QuadraticIn}},
{"quadratic-in", {Keyword::TWEEN, Tween::QuadraticIn}},
{"quadratic-out", {Keyword::TWEEN, Tween::QuadraticOut}},
{"quadratic-in-out", {Keyword::TWEEN, Tween::QuadraticInOut}},
{"quartic", {Keyword::TWEEN, Tween::QuarticIn}},
{"quartic-in", {Keyword::TWEEN, Tween::QuarticIn}},
{"quartic-out", {Keyword::TWEEN, Tween::QuarticOut}},
{"quartic-in-out", {Keyword::TWEEN, Tween::QuarticInOut}},
{"quintic", {Keyword::TWEEN, Tween::QuinticIn}},
{"quintic-in", {Keyword::TWEEN, Tween::QuinticIn}},
{"quintic-out", {Keyword::TWEEN, Tween::QuinticOut}},
{"quintic-in-out", {Keyword::TWEEN, Tween::QuinticInOut}},
{"sine", {Keyword::TWEEN, Tween::SineIn}},
{"sine-in", {Keyword::TWEEN, Tween::SineIn}},
{"sine-out", {Keyword::TWEEN, Tween::SineOut}},
{"sine-in-out", {Keyword::TWEEN, Tween::SineInOut}},
Expand Down

0 comments on commit 8118ca7

Please sign in to comment.