소스 검색

:wrench: Keep the slide processing when running directly

Easier to test ; the processing management is designed to work in a
slideshow only.

Actually, having a slide as the direct child of Window is like having
the focus.
DricomDragon 1 주 전
부모
커밋
b601550b19
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      godot/addons/slide_show/projector/slide/Slide.gd

+ 1 - 1
godot/addons/slide_show/projector/slide/Slide.gd

@@ -23,7 +23,7 @@ func _ready() -> void:
 func disable() -> void:
 	set_process_unhandled_key_input(false)
 
-	if processing_keep_when_disabled:
+	if processing_keep_when_disabled or get_parent() is Window:
 		return
 	get_children().all(disable_processing)