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

Merge pull request #46932 from JFonS/fix_lm_capture_env

[3.2] Batch of lightmapper fixes and minor improvements
This commit is contained in:
Rémi Verschelde
2021-03-12 12:30:36 +01:00
committed by GitHub
24 changed files with 229 additions and 30 deletions

View File

@@ -514,6 +514,8 @@ public:
virtual int lightmap_capture_get_octree_cell_subdiv(RID p_capture) const = 0;
virtual void lightmap_capture_set_energy(RID p_capture, float p_energy) = 0;
virtual float lightmap_capture_get_energy(RID p_capture) const = 0;
virtual void lightmap_capture_set_interior(RID p_capture, bool p_interior) = 0;
virtual bool lightmap_capture_is_interior(RID p_capture) const = 0;
virtual const PoolVector<LightmapCaptureOctree> *lightmap_capture_get_octree_ptr(RID p_capture) const = 0;
/* PARTICLES */