From c6923a3133a87b829d4bc652eb1f141833541599 Mon Sep 17 00:00:00 2001 From: Haze Weathers Date: Fri, 2 Jan 2026 20:24:08 -0600 Subject: [PATCH] get that print outta there --- systems/visuals/animation_strip.gd | 1 - 1 file changed, 1 deletion(-) diff --git a/systems/visuals/animation_strip.gd b/systems/visuals/animation_strip.gd index 0d190a0..3f1d796 100644 --- a/systems/visuals/animation_strip.gd +++ b/systems/visuals/animation_strip.gd @@ -10,7 +10,6 @@ extends Resource func draw(canvas_item: CanvasItem, time: float, modulate: Color = Color.WHITE) -> void: var frame_size = Vector2((texture.get_width() / frames), float(texture.get_height())) var current_frame = fmod(floorf(time * fps), frames) - print(time * fps) canvas_item.draw_texture_rect_region( texture, Rect2(-frame_size * 0.5, frame_size),