Disable items in cocina intro. PENDING RE-ENABLING THEM!

This commit is contained in:
2024-01-28 14:17:59 +01:00
parent d7d97d1440
commit 3d6545ad79
3 changed files with 21 additions and 2 deletions

View File

@@ -480,3 +480,9 @@ func get_video_player() -> Node:
func play_video(video_file: String) -> void:
$CanvasLayer/video_player.visible = true
$CanvasLayer/video_player.play(video_file)
# Clears the tooltip content (if an ESCTooltip node exists in UI)
# MODIFIED FOR RTMIUI
func clear_tooltip():
if tooltip_node != null:
(tooltip_node as ESCRichTooltip).clear()