From 0806fc744c9f276144102ee6b8523981b0fbf714 Mon Sep 17 00:00:00 2001 From: Xevion Date: Wed, 23 Jul 2025 21:34:27 -0500 Subject: [PATCH] chore: remove unused animation pausing methods --- src/animation.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/animation.rs b/src/animation.rs index c0fd834..6b9b13a 100644 --- a/src/animation.rs +++ b/src/animation.rs @@ -123,16 +123,6 @@ impl<'a> AnimatedAtlasTexture<'a> { } } - pub fn pause(&mut self) { - self.paused = true; - } - pub fn resume(&mut self) { - self.paused = false; - } - pub fn is_paused(&self) -> bool { - self.paused - } - pub fn set_color_modulation(&mut self, r: u8, g: u8, b: u8) { self.atlas.set_color_modulation(r, g, b); }