File tree Expand file tree Collapse file tree 3 files changed +0
-28
lines changed Expand file tree Collapse file tree 3 files changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -449,20 +449,6 @@ static auto print_sys_exec_ctx_generate(
449
449
" component_data, entity);\n "
450
450
);
451
451
});
452
-
453
- for (auto sys_id : get_all_sorted_systems ()) {
454
- auto sys_details = ecsact_entt_system_details::from_system_like (sys_id);
455
- auto system_sorting_struct_name = std::format (
456
- " ::ecsact::entt::detail::system_sorted<{}>" ,
457
- cpp_identifier (decl_full_name (sys_id))
458
- );
459
-
460
- /* for(const auto& components : details.generate_comps) { */
461
- /* auto matches = 0; */
462
- /* for(const auto& [comp_id, requirements] : components) { */
463
- /* } */
464
- /* } */
465
- }
466
452
}
467
453
468
454
static auto print_sys_exec_ctx_parent ( //
Original file line number Diff line number Diff line change @@ -58,19 +58,6 @@ auto ecsact::rt_entt_codegen::core::print_system_marker_add_fn(
58
58
system_sorting_struct_name,
59
59
" >(entity);"
60
60
);
61
-
62
- /* block( */
63
- /* ctx, */
64
- /* "if(::ecsact::entt::entity_matches_system<" + system_cpp_ident + */
65
- /* ">(reg, entity))", */
66
- /* [&] { */
67
- /* ctx.write( */
68
- /* "reg.emplace_or_replace<", */
69
- /* system_sorting_struct_name, */
70
- /* ">(entity);" */
71
- /* ); */
72
- /* } */
73
- /* ); */
74
61
}
75
62
}
76
63
}
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ void runtime_test::OtherEntitySystem::impl(context& ctx) {
45
45
}
46
46
47
47
void runtime_test::MakeAnother::impl (context& ctx) {
48
- std::cout << " MakeAnotherImpl\n " ;
49
48
ctx._ctx .generate (ctx.get <ComponentA>(), ctx.get <ComponentB>());
50
49
}
51
50
You can’t perform that action at this time.
0 commit comments