WIP: Thumbnails

This commit is contained in:
Adam
2025-07-14 00:25:57 -07:00
parent 8b665d158c
commit fcd379a62f
50 changed files with 1208 additions and 1053 deletions

View File

@@ -643,6 +643,14 @@ impl ParsedNodeFn {
"ExtractAnimationTime" => dependency_tokens.push(quote::quote! {ExtractAnimationTime}),
"ExtractIndex" => dependency_tokens.push(quote::quote! {ExtractIndex}),
"ExtractVarArgs" => dependency_tokens.push(quote::quote! {ExtractVarArgs}),
"ExtractAll" => {
dependency_tokens.push(quote::quote! {ExtractFootprint});
dependency_tokens.push(quote::quote! {ExtractDownstreamTransform});
dependency_tokens.push(quote::quote! {ExtractRealTime});
dependency_tokens.push(quote::quote! {ExtractAnimationTime});
dependency_tokens.push(quote::quote! {ExtractIndex});
dependency_tokens.push(quote::quote! {ExtractVarArgs});
}
_ => {}
}
}