mobius3 / tweeny

A modern C++ tweening library
http://mobius3.github.io/tweeny
MIT License
742 stars 53 forks source link

Method to wait at a point #29

Open klapstoelpiloot opened 2 years ago

klapstoelpiloot commented 2 years ago

It would be nice to have a method to wait at a specific point.

For example, right now I do:

auto t = tweeny::from(130).to(130).during(300).to(80).during(400);

But it would be better if I could do:

auto t = tweeny::from(130).wait(300).to(80).during(400);