Skip to content
Snippets Groups Projects
Unverified Commit 722b62ec authored by Jerome Humbert's avatar Jerome Humbert Committed by GitHub
Browse files

Fix build (#40)

parent 77b56f44
No related branches found
No related tags found
No related merge requests found
...@@ -1269,13 +1269,13 @@ mod tests { ...@@ -1269,13 +1269,13 @@ mod tests {
let mut seq = Sequence::new((0..3).map(|i| { let mut seq = Sequence::new((0..3).map(|i| {
Tween::new( Tween::new(
EaseMethod::Linear, EaseMethod::Linear,
TweeningType::Once,
Duration::from_secs(1), Duration::from_secs(1),
TransformPositionLens { TransformPositionLens {
start: Vec3::splat(i as f32), start: Vec3::splat(i as f32),
end: Vec3::splat((i + 1) as f32), end: Vec3::splat((i + 1) as f32),
}, },
) )
.with_repeat_count(RepeatCount::Finite(1))
})); }));
let mut transform = Transform::default(); let mut transform = Transform::default();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment