Browse Source

:wrench: Show the total number of slides at startup

DricomDragon 2 years ago
parent
commit
6c228e5a07
1 changed files with 1 additions and 0 deletions
  1. 1 0
      godot/projector/show/Show.gd

+ 1 - 0
godot/projector/show/Show.gd

@@ -18,6 +18,7 @@ var current_slide: Slide
 
 func _ready() -> void:
 	_enforce()
+	print("The show contains %s slides" % slides.size())
 
 	if hide_slides:
 		_hide_every_slide()