diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2023-11-20 14:31:56 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-03-01 12:44:03 -0600 |
commit | 0ce9b6fd1d72139921ad3a20cb1933eb35873eb8 (patch) | |
tree | 9658983dd31a7e37ec3d4e3fbb1bbf5b0bf4995a /modules/gdscript | |
parent | dad6c774b019ef8c5dccb4a1955c6a77b41a323e (diff) | |
download | redot-engine-0ce9b6fd1d72139921ad3a20cb1933eb35873eb8.tar.gz |
Add two new COMSTR environment variables
Diffstat (limited to 'modules/gdscript')
-rw-r--r-- | modules/gdscript/editor/script_templates/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/editor/script_templates/SCsub b/modules/gdscript/editor/script_templates/SCsub index 2266ef2d01..5db7e3fc3b 100644 --- a/modules/gdscript/editor/script_templates/SCsub +++ b/modules/gdscript/editor/script_templates/SCsub @@ -5,7 +5,7 @@ Import("env") import editor.template_builders as build_template_gd env["BUILDERS"]["MakeGDTemplateBuilder"] = Builder( - action=env.Run(build_template_gd.make_templates, "Generating GDScript templates header."), + action=env.Run(build_template_gd.make_templates), suffix=".h", src_suffix=".gd", ) |