Fix regression that reversed indexing of the Loop Level parameter of the 'Instance Index' node (#3421)

This commit is contained in:
Keavon Chambers
2025-11-25 21:32:56 -08:00
committed by GitHub
parent eb0f019b15
commit d247b81966

View File

@@ -305,7 +305,7 @@ impl ExtractAnimationTime for OwnedContextImpl {
}
impl ExtractIndex for OwnedContextImpl {
fn try_index(&self) -> Option<impl Iterator<Item = usize>> {
self.index.clone().map(|x| x.into_iter())
self.index.clone().map(|x| x.into_iter().rev())
}
}
impl ExtractVarArgs for OwnedContextImpl {