Skip to content

Commit 73fe5d5

Browse files
Merge branch 'main' into try_insert
2 parents 3e6badb + 2d0a957 commit 73fe5d5

File tree

20 files changed

+528
-202
lines changed

20 files changed

+528
-202
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/.envrc
33
/.direnv
44

5+
Cargo.lock

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## v0.9.1 - 2025-07-15
4+
5+
- Fix color delta interpolation
6+
7+
### Breaking Change
8+
9+
- Add a delta flag to the built-in tweens
10+
- This comes instead of the additional XDelta type so that one won't have to register so twice the types
11+
12+
## v0.9.0 - 2025-07-14
13+
14+
### Breaking Changes
15+
16+
- `interpolate` functions now take an additional `previous_value` argument, which you can now use to make delta tweens.
17+
Still, you'd have to update everything that implements `Interpolator` to match the new signature.
18+
- Now, if you want to interpolate yourself an interpolator that uses `previous_value`, you should query for `TweenPreviousValue` as well. This is a required component, so it'll always be on the tween's entity unless you explicitly remove it.
19+
20+
### Changes
21+
22+
- Migrate to Bevy 0.16.1
23+
- You can now use `previous_value` to make tweens that apply delta instead of set values
24+
(see `TranslationDelta` for example). This is useful when you want two ongoing tweens to affect the same entity.
25+
326
## v0.8.0 - 2025-05-09
427

528
### Changes

0 commit comments

Comments
 (0)