Skip to content

Commit 1cb9ea2

Browse files
committed
Cleanup
1 parent 4348dba commit 1cb9ea2

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

node-graph/gcore/src/vector/vector_nodes.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -979,16 +979,10 @@ fn extract_vector(ctx: impl Ctx + ExtractVarArgs) -> Table<Vector> {
979979
#[node_macro::node(category("Vector: Modifier"), path(graphene_core::vector))]
980980
async fn map_instance(ctx: impl Ctx + CloneVarArgs + ExtractAll, content: Table<Vector>, map_fn: impl Node<Context<'static>, Output = Table<Vector>>) -> Table<Vector> {
981981
let mut rows = Vec::new();
982-
// log::debug!("content: {content:?}");
983982
for row in content {
984-
let transform = row.transform;
985-
let alpha_blending = row.alpha_blending;
986-
let source_node_id = row.source_node_id;
987-
988983
let owned_ctx = OwnedContextImpl::from(ctx.clone());
989984
let owned_ctx = owned_ctx.with_vararg(Box::new(Table::new_from_row(row)));
990985
let table = map_fn.eval(owned_ctx.into_context()).await;
991-
// log::debug!("content: {content:?}");
992986
for inner_row in table {
993987
rows.push(inner_row);
994988
}

0 commit comments

Comments
 (0)