summaryrefslogtreecommitdiffstats
path: root/modules/lightmapper_rd/config.py
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2023-09-29 11:15:04 +0200
committerHugo Locurcio <hugo.locurcio@hugo.pro>2023-09-29 11:30:15 +0200
commitd6d640f15807dfe4447c48772f4418f1374181ac (patch)
treed8518f3feddf839208ccf4e9f548fb4bc3411637 /modules/lightmapper_rd/config.py
parentfe8a58b9d7ca5b85348b3a984eeb16371a097481 (diff)
downloadredot-engine-d6d640f15807dfe4447c48772f4418f1374181ac.tar.gz
Disable `lightmapper_rd` module in non-editor builds (and in Android editor)
This is consistent with `xatlas_unwrap`, which isn't enabled in non-editor builds and the Android editor either. There is currently no way to use the lightmapper in a non-editor build anyway, as it doesn't expose any methods (and even if there was, there would be no way to perform UV2 unwrapping in the exported project). This reduces binary size of a stripped Linux x86_64 export template build by ~164 KB. This also moves the PrimitiveMesh texel size project setting so that it's defined when the module is disabled, and adds a property hint to it.
Diffstat (limited to 'modules/lightmapper_rd/config.py')
-rw-r--r--modules/lightmapper_rd/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/lightmapper_rd/config.py b/modules/lightmapper_rd/config.py
index d22f9454ed..ecc61c2d7e 100644
--- a/modules/lightmapper_rd/config.py
+++ b/modules/lightmapper_rd/config.py
@@ -1,5 +1,5 @@
def can_build(env, platform):
- return True
+ return env.editor_build and platform not in ["android", "ios"]
def configure(env):