behaviour-tree-test/engine/modules/cvtt/config.py
Sara c3f9669b10 Add 'engine/' from commit 'a8e37fc010'
git-subtree-dir: engine
git-subtree-mainline: b74841629e
git-subtree-split: a8e37fc010
2026-03-13 11:22:19 +01:00

18 lines
396 B
Python

def can_build(env, platform):
return env.editor_build or env["cvtt_export_templates"]
def get_opts(platform):
from SCons.Variables import BoolVariable
return [
BoolVariable(
"cvtt_export_templates",
"Enable CVTT image compression in export template builds (increases binary size)",
False,
),
]
def configure(env):
pass