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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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 {