diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-11-26 17:47:37 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-12-14 12:01:12 +0100 |
commit | e962900f2344b4ca797002ddf440625087f63291 (patch) | |
tree | bef23717366f375d967850e1556d86f6bb41b1a6 /doc/classes/RenderingServer.xml | |
parent | 80e292b3e019d4084b09431572bba12f87e81023 (diff) | |
download | redot-engine-e962900f2344b4ca797002ddf440625087f63291.tar.gz |
Rename and reorder bake mode properties for consistency
The order now goes from least to most computationally expensive:
- Disabled
- Static
- Dynamic
Diffstat (limited to 'doc/classes/RenderingServer.xml')
-rw-r--r-- | doc/classes/RenderingServer.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/RenderingServer.xml b/doc/classes/RenderingServer.xml index 0700650a91..a726d7baa1 100644 --- a/doc/classes/RenderingServer.xml +++ b/doc/classes/RenderingServer.xml @@ -3723,9 +3723,9 @@ </constant> <constant name="LIGHT_BAKE_DISABLED" value="0" enum="LightBakeMode"> </constant> - <constant name="LIGHT_BAKE_DYNAMIC" value="1" enum="LightBakeMode"> + <constant name="LIGHT_BAKE_STATIC" value="1" enum="LightBakeMode"> </constant> - <constant name="LIGHT_BAKE_STATIC" value="2" enum="LightBakeMode"> + <constant name="LIGHT_BAKE_DYNAMIC" value="2" enum="LightBakeMode"> </constant> <constant name="LIGHT_OMNI_SHADOW_DUAL_PARABOLOID" value="0" enum="LightOmniShadowMode"> Use a dual paraboloid shadow map for omni lights. |