File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -614,6 +614,10 @@ void ecsact_codegen_plugin(
614
614
write_fields_count_constexpr (ctx, comp_id);
615
615
}
616
616
617
+ for (auto & comp_id : ecsact::meta::get_transient_ids (ctx.package_id )) {
618
+ write_fields_count_constexpr (ctx, comp_id);
619
+ }
620
+
617
621
for (auto & comp_id : ecsact::meta::get_action_ids (ctx.package_id )) {
618
622
write_fields_count_constexpr (ctx, comp_id);
619
623
}
@@ -622,6 +626,10 @@ void ecsact_codegen_plugin(
622
626
write_fields_info_constexpr (ctx, comp_id);
623
627
}
624
628
629
+ for (auto & comp_id : ecsact::meta::get_transient_ids (ctx.package_id )) {
630
+ write_fields_info_constexpr (ctx, comp_id);
631
+ }
632
+
625
633
for (auto & comp_id : ecsact::meta::get_action_ids (ctx.package_id )) {
626
634
write_fields_info_constexpr (ctx, comp_id);
627
635
}
You can’t perform that action at this time.
0 commit comments