Skip to content

Commit 2adb726

Browse files
committed
fix: feature missing for vello_graphics
1 parent caaa145 commit 2adb726

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ bevy = { workspace = true }
3535
[features]
3636
default = ["common", "vello_graphics"]
3737
common = ["dep:motiongfx_common"]
38-
vello_graphics = ["dep:motiongfx_vello"]
38+
vello_graphics = ["dep:motiongfx_vello", "motiongfx_core/vello_graphics"]
3939

4040
[dev-dependencies]
4141
bevy = "0.14"

examples/hello_world.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,6 @@ fn timeline_movement(
130130
time: Res<Time>,
131131
) {
132132
for (mut sequence_player, mut sequence_time) in q_timelines.iter_mut() {
133-
println!("timeline movement");
134-
println!("target_time: {}", sequence_time.target_time);
135133
if keys.pressed(KeyCode::KeyD) {
136134
sequence_time.target_time += time.delta_seconds();
137135
}

0 commit comments

Comments
 (0)