Fix regression that reversed indexing of the Loop Level parameter of the 'Instance Index' node (#3421)
This commit is contained in:
parent
eb0f019b15
commit
d247b81966
|
|
@ -305,7 +305,7 @@ impl ExtractAnimationTime for OwnedContextImpl {
|
||||||
}
|
}
|
||||||
impl ExtractIndex for OwnedContextImpl {
|
impl ExtractIndex for OwnedContextImpl {
|
||||||
fn try_index(&self) -> Option<impl Iterator<Item = usize>> {
|
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 {
|
impl ExtractVarArgs for OwnedContextImpl {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue