feat: godot-engine-source-4.3-stable
This commit is contained in:
parent
c59a7dcade
commit
7125d019b5
11149 changed files with 5070401 additions and 0 deletions
16
engine/modules/mono/editor/script_templates/SCsub
Normal file
16
engine/modules/mono/editor/script_templates/SCsub
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
Import("env")
|
||||
|
||||
import editor.template_builders as build_template_cs
|
||||
|
||||
env["BUILDERS"]["MakeCSharpTemplateBuilder"] = Builder(
|
||||
action=env.Run(build_template_cs.make_templates),
|
||||
suffix=".h",
|
||||
src_suffix=".cs",
|
||||
)
|
||||
|
||||
# Template files
|
||||
templates_sources = Glob("*/*.cs")
|
||||
|
||||
env.Alias("editor_template_cs", [env.MakeCSharpTemplateBuilder("templates.gen.h", templates_sources)])
|
||||
Loading…
Add table
Add a link
Reference in a new issue