mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
9 lines
201 B
Python
9 lines
201 B
Python
def can_build(env, platform):
|
|
if env.editor_build: # Encoder dependencies
|
|
env.module_add_dependencies("basis_universal", ["jpg", "tinyexr"])
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|