Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/cvtt/config.py
20784 views
1
def can_build(env, platform):
2
return env.editor_build or env["cvtt_export_templates"]
3
4
5
def get_opts(platform):
6
from SCons.Variables import BoolVariable
7
8
return [
9
BoolVariable(
10
"cvtt_export_templates",
11
"Enable CVTT image compression in export template builds (increases binary size)",
12
False,
13
),
14
]
15
16
17
def configure(env):
18
pass
19
20