Browse Source

Updating comments

pull/19/head
Ryan Reed 1 month ago
parent
commit
8d5146fd09
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      scenes/ui/autosave_notification.gd

+ 3
- 4
scenes/ui/autosave_notification.gd View File

@ -15,11 +15,10 @@ func _on_autosave_start() -> void:
visible = true
func _on_autosave_complete() -> void:
# This is for testing. Saving seems to be fast making the autosave disappear immediately.
# It's not clear the cause.
# Additionally, the displaying of UI element is inconsistent. Sometimes I need to print(visible) to force it to show up, although I have no idea why that works
# This is for testing. The displaying of UI element is inconsistent.
# Sometimes I need to print(visible) to force it to show up, although I have no idea why that works. It might not actually be doing anything and is just randomish.
# TODO: Figure out what the hell is going on here
print(visible)
#print(visible)
await get_tree().create_timer(3).timeout
animation_player.stop()


Loading…
Cancel
Save