From a615655677cfbe8c47c3590293795a45b9effb87 Mon Sep 17 00:00:00 2001 From: Keavon Chambers Date: Tue, 25 Nov 2025 20:48:59 -0800 Subject: [PATCH] Fix regression that reversed indexing of the Loop Level parameter of the 'Instance Index' node --- 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 f9891a9f37..7918c9750a 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 {