From 1f23991a721b23ad1d05fc908a818e4fb18e7ab1 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Fri, 21 Aug 2026 22:03:31 +0000 Subject: [PATCH] Add the editor layer path marker --- node-graph/libraries/core-types/src/attribute.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node-graph/libraries/core-types/src/attribute.rs b/node-graph/libraries/core-types/src/attribute.rs index f49b834a88..624fc0f10a 100644 --- a/node-graph/libraries/core-types/src/attribute.rs +++ b/node-graph/libraries/core-types/src/attribute.rs @@ -253,6 +253,8 @@ attribute! { pub Location("location"): DVec2; /// A regex named-capture-group's name, or empty for unnamed groups. pub Name("name"): &str; + /// The document node path of the editor layer owning the item. + pub EditorLayerPath("editor:layer_path"): &[crate::uuid::NodeId]; } #[cfg(test)]