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),