Skip to content

Commit d247b81

Browse files
authored
Fix regression that reversed indexing of the Loop Level parameter of the 'Instance Index' node (#3421)
1 parent eb0f019 commit d247b81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

node-graph/libraries/core-types/src/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ impl ExtractAnimationTime for OwnedContextImpl {
305305
}
306306
impl ExtractIndex for OwnedContextImpl {
307307
fn try_index(&self) -> Option<impl Iterator<Item = usize>> {
308-
self.index.clone().map(|x| x.into_iter())
308+
self.index.clone().map(|x| x.into_iter().rev())
309309
}
310310
}
311311
impl ExtractVarArgs for OwnedContextImpl {

0 commit comments

Comments
 (0)