We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e659214 commit 98c2e4dCopy full SHA for 98c2e4d
crates/bevy_api_gen/templates/footer.tera
@@ -13,8 +13,7 @@ pub struct {{ "ScriptingPlugin" | prefix_cratename | convert_case(case="upper_ca
13
name = "{{ item.ident | convert_case(case="snake") }}",
14
)]
15
impl {{item.import_path}} {
16
-{%- for function in item.functions -%}
17
-
+{% for function in item.functions %}
18
fn {{ function.ident }} (
19
{%- for arg in function.args -%}
20
{%- if arg.proxy_ty is matching("Mut.*")-%}
@@ -43,7 +42,7 @@ impl {{item.import_path}} {
43
42
).into();
44
output
45
}
46
-{%- endfor -%};
+{% endfor %}
47
48
{% endfor %}
49
0 commit comments