1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Rename and reorder bake mode properties for consistency

The order now goes from least to most computationally expensive:

- Disabled
- Static
- Dynamic
This commit is contained in:
Hugo Locurcio
2021-11-26 17:47:37 +01:00
parent 80e292b3e0
commit e962900f23
16 changed files with 37 additions and 33 deletions

View File

@@ -445,8 +445,8 @@ public:
enum LightBakeMode {
LIGHT_BAKE_DISABLED,
LIGHT_BAKE_DYNAMIC,
LIGHT_BAKE_STATIC,
LIGHT_BAKE_DYNAMIC,
};
virtual void light_set_bake_mode(RID p_light, LightBakeMode p_bake_mode) = 0;