summaryrefslogtreecommitdiffstats
path: root/scene/3d/light.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-12-20 00:21:07 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-12-20 00:21:07 -0300
commit075fde7f26d6c3b02df5108065d1a9f979437bb8 (patch)
tree991058c18d9715c8015fc3cfff0263d9d1e3cc1a /scene/3d/light.h
parent22a90e8f2acce60f92958788a52b3f0bdb1a0cdf (diff)
downloadredot-engine-075fde7f26d6c3b02df5108065d1a9f979437bb8.tar.gz
work in progress global illumination
Diffstat (limited to 'scene/3d/light.h')
-rw-r--r--scene/3d/light.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/scene/3d/light.h b/scene/3d/light.h
index fcf5ce90f9..45adfc1dee 100644
--- a/scene/3d/light.h
+++ b/scene/3d/light.h
@@ -37,6 +37,10 @@
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
+
+
+class BakedLight;
+
class Light : public VisualInstance {
OBJ_TYPE( Light, VisualInstance );
@@ -72,6 +76,8 @@ private:
VS::LightType type;
bool editor_only;
void _update_visibility();
+
+ BakedLight *baked_light;
// bind helpers
protected: