remove prints
This commit is contained in:
parent
143dc9d288
commit
d4751c04a1
1 changed files with 0 additions and 2 deletions
|
@ -40,10 +40,8 @@ func _on_updated(_current_range: IntRange, _previous_range: IntRange):
|
|||
func _update_display():
|
||||
var indices: Array = ring_buffer.range().collect()
|
||||
|
||||
prints(indices, ring_buffer.start_index, ring_buffer.end_index, ring_buffer.capacity)
|
||||
for i in range(min(indices.size(), max_items)):
|
||||
var node = get_child(i)
|
||||
prints(ring_buffer.index(i))
|
||||
var item = items[indices[i]]
|
||||
if item != null:
|
||||
bind_item.call(node, item)
|
||||
|
|
Loading…
Add table
Reference in a new issue