From 9a649462e1a8698cb0761c517b629d3431e64643 Mon Sep 17 00:00:00 2001 From: Talmaj Marinc Date: Tue, 19 May 2026 21:41:53 +0200 Subject: [PATCH] Fix node loading from geometry_estimation folder. --- comfy_extras/nodes_depth_anything_3.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/comfy_extras/nodes_depth_anything_3.py b/comfy_extras/nodes_depth_anything_3.py index 6a7973cb9..e98183e3a 100644 --- a/comfy_extras/nodes_depth_anything_3.py +++ b/comfy_extras/nodes_depth_anything_3.py @@ -3,8 +3,7 @@ Adds these nodes: * ``LoadDepthAnything3`` -- load a DA3 ``.safetensors`` file from the - ``models/depth_estimation/`` folder. Falls back to ``models/diffusion_models/`` - so existing installations keep working. + ``models/geometry_estimation/`` folder. * ``DepthAnything3`` -- unified depth estimation node supporting both mono and multi-view modes via a DynamicCombo selector. In mono mode, returns a normalised depth image plus sky/confidence masks. In multi-view mode, @@ -43,11 +42,11 @@ class LoadDepthAnything3(io.ComfyNode): return io.Schema( node_id="LoadDepthAnything3", display_name="Load Depth Anything 3", - category="loaders/depth_estimation", + category="loaders/geometry_estimation", inputs=[ io.Combo.Input( "model_name", - options=folder_paths.get_filename_list("depth_estimation"), + options=folder_paths.get_filename_list("geometry_estimation"), ), io.Combo.Input( "weight_dtype",