Fix broken node input caching

This commit is contained in:
Dennis Kobert 2023-03-03 16:57:21 +01:00
parent 8fe8896c4a
commit 0512cb249f
No known key found for this signature in database
GPG key ID: 5A4358CB9530F933

View file

@ -30,7 +30,7 @@ macro_rules! construct_node {
args.reverse(); args.reverse();
<$path>::new($(graphene_core::value::ClonedNode::new( <$path>::new($(graphene_core::value::ClonedNode::new(
graphene_std::any::input_node::<$type>(args.pop() graphene_std::any::input_node::<$type>(args.pop()
.expect("Not enough arguments provided to construct node"))).eval(()) .expect("Not enough arguments provided to construct node")).eval(()))
),* ),*
) )
}} }}