diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2020-03-25 06:51:22 -0500 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2020-03-25 06:51:22 -0500 |
commit | 8cdbe7352c4846eb339358bcca6083f747e27721 (patch) | |
tree | 36dee15239e98a3c10c5696a4ad696acaf65d39a /src/animations.rs | |
parent | 6d78a950473a4f34df6bae98d2bf2c99632afe4a (diff) |
cargo update & lint
Diffstat (limited to 'src/animations.rs')
-rw-r--r-- | src/animations.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/animations.rs b/src/animations.rs index b82b42e..cbaad41 100644 --- a/src/animations.rs +++ b/src/animations.rs @@ -67,7 +67,7 @@ impl Animations { idle.source.h *= 2.0; let animation = Animation::new(vec![idle.clone()]); - available.insert(Action::IdleLeft, animation.clone()); + available.insert(Action::IdleLeft, animation); let mut moving = tileset.get_tile_by_entity_keyframe("player-top", 1); moving.source.h *= 2.0; @@ -75,15 +75,15 @@ impl Animations { let animation = Animation::new(vec![idle.clone(), moving.clone()]); available.insert(Action::MovingLeft, animation.clone()); available.insert(Action::MovingUpLeft, animation.clone()); - available.insert(Action::MovingDownLeft, animation.clone()); + available.insert(Action::MovingDownLeft, animation); let idle = flip(idle); let moving = flip(moving); let animation = Animation::new(vec![idle.clone()]); - available.insert(Action::IdleRight, animation.clone()); + available.insert(Action::IdleRight, animation); - let animation = Animation::new(vec![idle.clone(), moving.clone()]); + let animation = Animation::new(vec![idle, moving]); available.insert(Action::MovingRight, animation.clone()); available.insert(Action::MovingUpRight, animation.clone()); available.insert(Action::MovingDownRight, animation.clone()); |