To achieve the effect of dynamic lighting, you need to darken the rest of the scene except for the areas illuminated by the light sources. You can do this using Godot’sCanvasModulatefeature. extends Node2D const DARKNESS =0.7 func _ready(): var canvas_modulate = CanvasModulate.new() canva...