Skip to content

Commit

Permalink
fix: feature missing for vello_graphics
Browse files Browse the repository at this point in the history
  • Loading branch information
nixon-voxell committed Sep 6, 2024
1 parent caaa145 commit 2adb726
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ bevy = { workspace = true }
[features]
default = ["common", "vello_graphics"]
common = ["dep:motiongfx_common"]
vello_graphics = ["dep:motiongfx_vello"]
vello_graphics = ["dep:motiongfx_vello", "motiongfx_core/vello_graphics"]

[dev-dependencies]
bevy = "0.14"
Expand Down
2 changes: 0 additions & 2 deletions examples/hello_world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,6 @@ fn timeline_movement(
time: Res<Time>,
) {
for (mut sequence_player, mut sequence_time) in q_timelines.iter_mut() {
println!("timeline movement");
println!("target_time: {}", sequence_time.target_time);
if keys.pressed(KeyCode::KeyD) {
sequence_time.target_time += time.delta_seconds();
}
Expand Down

0 comments on commit 2adb726

Please sign in to comment.