From d247b819664b57add5b23107aeac721495c2767a Mon Sep 17 00:00:00 2001 From: Keavon Chambers Date: Tue, 25 Nov 2025 21:32:56 -0800 Subject: [PATCH] Fix regression that reversed indexing of the Loop Level parameter of the 'Instance Index' node (#3421) --- node-graph/libraries/core-types/src/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-graph/libraries/core-types/src/context.rs b/node-graph/libraries/core-types/src/context.rs index f9891a9f..7918c975 100644 --- a/node-graph/libraries/core-types/src/context.rs +++ b/node-graph/libraries/core-types/src/context.rs @@ -305,7 +305,7 @@ impl ExtractAnimationTime for OwnedContextImpl { } impl ExtractIndex for OwnedContextImpl { fn try_index(&self) -> Option> { - self.index.clone().map(|x| x.into_iter()) + self.index.clone().map(|x| x.into_iter().rev()) } } impl ExtractVarArgs for OwnedContextImpl {