LOADER.gd 148 B

123456789
  1. extends Label
  2. var max_items = 1
  3. var current_items = 0
  4. func update_counter():
  5. text = "loading... " + str(current_items) + "/" + str(max_items)