|
@@ -30,6 +30,8 @@
|
|
|
|
|
|
#include "gi_probe.h"
|
|
#include "gi_probe.h"
|
|
|
|
|
|
|
|
+#include "core/os/os.h"
|
|
|
|
+
|
|
#include "mesh_instance.h"
|
|
#include "mesh_instance.h"
|
|
#include "voxel_light_baker.h"
|
|
#include "voxel_light_baker.h"
|
|
|
|
|
|
@@ -490,6 +492,14 @@ PoolVector<Face3> GIProbe::get_faces(uint32_t p_usage_flags) const {
|
|
return PoolVector<Face3>();
|
|
return PoolVector<Face3>();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+String GIProbe::get_configuration_warning() const {
|
|
|
|
+
|
|
|
|
+ if (OS::get_singleton()->get_current_video_driver() == OS::VIDEO_DRIVER_GLES2) {
|
|
|
|
+ return TTR("GIProbes are not supported by the GLES2 video driver.\nUse a BakedLightmap instead.");
|
|
|
|
+ }
|
|
|
|
+ return String();
|
|
|
|
+}
|
|
|
|
+
|
|
void GIProbe::_bind_methods() {
|
|
void GIProbe::_bind_methods() {
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_probe_data", "data"), &GIProbe::set_probe_data);
|
|
ClassDB::bind_method(D_METHOD("set_probe_data", "data"), &GIProbe::set_probe_data);
|