extends Node const BLOCK_PREFAB: PackedScene = preload("res://scenes/blocks/block.tscn") const DROPPED_BLOCK_PREFAB: PackedScene = preload("res://scenes/blocks/dropped_block.tscn") # TODO: Move the following into the GameSettingsManager var enable_waila: bool = true ## Enable `What Am I Looking At` UI var enable_block_highlight: bool = true