Geometry Nodes: add simulation support #104924

Closed
Hans Goudey wants to merge 211 commits from geometry-nodes-simulation into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 52a154370d - Show all commits

View File

@ -168,8 +168,8 @@ static void node_declare_dynamic(const bNodeTree &node_tree,
}
std::unique_ptr<decl::Float> delta_time = std::make_unique<decl::Float>();
delta_time->identifier = N_("Delta Time");
delta_time->name = delta_time->identifier;
delta_time->identifier = "Delta Time";
delta_time->name = DATA_("Delta Time");
delta_time->in_out = SOCK_OUT;
r_declaration.outputs.append(std::move(delta_time));