| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  environment.cpp                                                      */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-01-01 20:13:46 +01:00
										 |  |  | /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "environment.h"
 | 
					
						
							| 
									
										
										
										
											2020-07-03 14:27:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/project_settings.h"
 | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | #include "servers/visual_server.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "texture.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | RID Environment::get_rid() const { | 
					
						
							|  |  |  | 	return environment; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | void Environment::set_background(BGMode p_bg) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bg_mode = p_bg; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_background(environment, VS::EnvironmentBG(p_bg)); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 	_change_notify(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | void Environment::set_sky(const Ref<Sky> &p_sky) { | 
					
						
							|  |  |  | 	bg_sky = p_sky; | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	RID sb_rid; | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (bg_sky.is_valid()) { | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 		sb_rid = bg_sky->get_rid(); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_sky(environment, sb_rid); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-29 18:56:05 -03:00
										 |  |  | void Environment::set_sky_custom_fov(float p_scale) { | 
					
						
							|  |  |  | 	bg_sky_custom_fov = p_scale; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_sky_custom_fov(environment, p_scale); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-12-15 16:27:03 +11:00
										 |  |  | void Environment::set_sky_orientation(const Basis &p_orientation) { | 
					
						
							|  |  |  | 	bg_sky_orientation = p_orientation; | 
					
						
							|  |  |  | 	_change_notify("background_sky_rotation"); | 
					
						
							|  |  |  | 	_change_notify("background_sky_rotation_degrees"); | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_sky_orientation(environment, bg_sky_orientation); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | void Environment::set_sky_rotation(const Vector3 &p_euler_rad) { | 
					
						
							|  |  |  | 	bg_sky_orientation.set_euler(p_euler_rad); | 
					
						
							|  |  |  | 	_change_notify("background_sky_orientation"); | 
					
						
							|  |  |  | 	_change_notify("background_sky_rotation_degrees"); | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_sky_orientation(environment, bg_sky_orientation); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | void Environment::set_sky_rotation_degrees(const Vector3 &p_euler_deg) { | 
					
						
							|  |  |  | 	set_sky_rotation(p_euler_deg * Math_PI / 180.0); | 
					
						
							|  |  |  | 	_change_notify("background_sky_rotation"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_bg_color(const Color &p_color) { | 
					
						
							|  |  |  | 	bg_color = p_color; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_bg_color(environment, p_color); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_bg_energy(float p_energy) { | 
					
						
							|  |  |  | 	bg_energy = p_energy; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_bg_energy(environment, p_energy); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_canvas_max_layer(int p_max_layer) { | 
					
						
							|  |  |  | 	bg_canvas_max_layer = p_max_layer; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_canvas_max_layer(environment, p_max_layer); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ambient_light_color(const Color &p_color) { | 
					
						
							|  |  |  | 	ambient_color = p_color; | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ambient_light(environment, ambient_color, ambient_energy, ambient_sky_contribution); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ambient_light_energy(float p_energy) { | 
					
						
							|  |  |  | 	ambient_energy = p_energy; | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ambient_light(environment, ambient_color, ambient_energy, ambient_sky_contribution); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | void Environment::set_ambient_light_sky_contribution(float p_energy) { | 
					
						
							|  |  |  | 	ambient_sky_contribution = p_energy; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ambient_light(environment, ambient_color, ambient_energy, ambient_sky_contribution); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | void Environment::set_camera_feed_id(int p_camera_feed_id) { | 
					
						
							|  |  |  | 	camera_feed_id = p_camera_feed_id; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_camera_feed_id(environment, camera_feed_id); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Environment::BGMode Environment::get_background() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	return bg_mode; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | Ref<Sky> Environment::get_sky() const { | 
					
						
							|  |  |  | 	return bg_sky; | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-29 18:56:05 -03:00
										 |  |  | float Environment::get_sky_custom_fov() const { | 
					
						
							|  |  |  | 	return bg_sky_custom_fov; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-15 16:27:03 +11:00
										 |  |  | Basis Environment::get_sky_orientation() const { | 
					
						
							|  |  |  | 	return bg_sky_orientation; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Vector3 Environment::get_sky_rotation() const { | 
					
						
							|  |  |  | 	// should we cache this? maybe overkill
 | 
					
						
							|  |  |  | 	return bg_sky_orientation.get_euler(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Vector3 Environment::get_sky_rotation_degrees() const { | 
					
						
							|  |  |  | 	return get_sky_rotation() * 180.0 / Math_PI; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Color Environment::get_bg_color() const { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 	return bg_color; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_bg_energy() const { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 	return bg_energy; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | int Environment::get_canvas_max_layer() const { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 	return bg_canvas_max_layer; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Color Environment::get_ambient_light_color() const { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 	return ambient_color; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_ambient_light_energy() const { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 	return ambient_energy; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | float Environment::get_ambient_light_sky_contribution() const { | 
					
						
							|  |  |  | 	return ambient_sky_contribution; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-05-04 16:40:33 +02:00
										 |  |  | int Environment::get_camera_feed_id() const { | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	return camera_feed_id; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | void Environment::set_tonemapper(ToneMapper p_tone_mapper) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	tone_mapper = p_tone_mapper; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Environment::ToneMapper Environment::get_tonemapper() const { | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 	return tone_mapper; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_tonemap_exposure(float p_exposure) { | 
					
						
							|  |  |  | 	tonemap_exposure = p_exposure; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_tonemap_exposure() const { | 
					
						
							| 
									
										
										
										
											2016-12-07 17:49:52 -03:00
										 |  |  | 	return tonemap_exposure; | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_tonemap_white(float p_white) { | 
					
						
							|  |  |  | 	tonemap_white = p_white; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_tonemap_white() const { | 
					
						
							|  |  |  | 	return tonemap_white; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_tonemap_auto_exposure(bool p_enabled) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	tonemap_auto_exposure = p_enabled; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey); | 
					
						
							| 
									
										
										
										
											2017-07-26 00:39:41 -03:00
										 |  |  | 	_change_notify(); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | bool Environment::get_tonemap_auto_exposure() const { | 
					
						
							|  |  |  | 	return tonemap_auto_exposure; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_tonemap_auto_exposure_max(float p_auto_exposure_max) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	tonemap_auto_exposure_max = p_auto_exposure_max; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_tonemap_auto_exposure_max() const { | 
					
						
							|  |  |  | 	return tonemap_auto_exposure_max; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_tonemap_auto_exposure_min(float p_auto_exposure_min) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	tonemap_auto_exposure_min = p_auto_exposure_min; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_tonemap_auto_exposure_min() const { | 
					
						
							|  |  |  | 	return tonemap_auto_exposure_min; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_tonemap_auto_exposure_speed(float p_auto_exposure_speed) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	tonemap_auto_exposure_speed = p_auto_exposure_speed; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_tonemap_auto_exposure_speed() const { | 
					
						
							|  |  |  | 	return tonemap_auto_exposure_speed; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-07 17:49:52 -03:00
										 |  |  | void Environment::set_tonemap_auto_exposure_grey(float p_auto_exposure_grey) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	tonemap_auto_exposure_grey = p_auto_exposure_grey; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_tonemap(environment, VS::EnvironmentToneMapper(tone_mapper), tonemap_exposure, tonemap_white, tonemap_auto_exposure, tonemap_auto_exposure_min, tonemap_auto_exposure_max, tonemap_auto_exposure_speed, tonemap_auto_exposure_grey); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-12-07 17:49:52 -03:00
										 |  |  | float Environment::get_tonemap_auto_exposure_grey() const { | 
					
						
							|  |  |  | 	return tonemap_auto_exposure_grey; | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_adjustment_enable(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	adjustment_enabled = p_enable; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_adjustment(environment, adjustment_enabled, adjustment_brightness, adjustment_contrast, adjustment_saturation, adjustment_color_correction.is_valid() ? adjustment_color_correction->get_rid() : RID()); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	_change_notify(); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool Environment::is_adjustment_enabled() const { | 
					
						
							|  |  |  | 	return adjustment_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_adjustment_brightness(float p_brightness) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	adjustment_brightness = p_brightness; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_adjustment(environment, adjustment_enabled, adjustment_brightness, adjustment_contrast, adjustment_saturation, adjustment_color_correction.is_valid() ? adjustment_color_correction->get_rid() : RID()); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_adjustment_brightness() const { | 
					
						
							|  |  |  | 	return adjustment_brightness; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_adjustment_contrast(float p_contrast) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	adjustment_contrast = p_contrast; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_adjustment(environment, adjustment_enabled, adjustment_brightness, adjustment_contrast, adjustment_saturation, adjustment_color_correction.is_valid() ? adjustment_color_correction->get_rid() : RID()); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_adjustment_contrast() const { | 
					
						
							|  |  |  | 	return adjustment_contrast; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_adjustment_saturation(float p_saturation) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	adjustment_saturation = p_saturation; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_adjustment(environment, adjustment_enabled, adjustment_brightness, adjustment_contrast, adjustment_saturation, adjustment_color_correction.is_valid() ? adjustment_color_correction->get_rid() : RID()); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_adjustment_saturation() const { | 
					
						
							|  |  |  | 	return adjustment_saturation; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_adjustment_color_correction(const Ref<Texture> &p_ramp) { | 
					
						
							|  |  |  | 	adjustment_color_correction = p_ramp; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_adjustment(environment, adjustment_enabled, adjustment_brightness, adjustment_contrast, adjustment_saturation, adjustment_color_correction.is_valid() ? adjustment_color_correction->get_rid() : RID()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | Ref<Texture> Environment::get_adjustment_color_correction() const { | 
					
						
							|  |  |  | 	return adjustment_color_correction; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::_validate_property(PropertyInfo &property) const { | 
					
						
							| 
									
										
										
										
											2019-02-06 21:27:31 +11:00
										 |  |  | 	if (property.name == "background_sky" || property.name == "background_sky_custom_fov" || property.name == "background_sky_orientation" || property.name == "background_sky_rotation" || property.name == "background_sky_rotation_degrees" || property.name == "ambient_light/sky_contribution") { | 
					
						
							| 
									
										
										
										
											2017-09-07 20:45:37 -03:00
										 |  |  | 		if (bg_mode != BG_SKY && bg_mode != BG_COLOR_SKY) { | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 			property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL; | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-29 22:11:33 -03:00
										 |  |  | 	if (property.name == "background_color") { | 
					
						
							| 
									
										
										
										
											2017-09-07 20:45:37 -03:00
										 |  |  | 		if (bg_mode != BG_COLOR && bg_mode != BG_COLOR_SKY) { | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 			property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL; | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-29 22:11:33 -03:00
										 |  |  | 	if (property.name == "background_canvas_max_layer") { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (bg_mode != BG_CANVAS) { | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 			property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL; | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	if (property.name == "background_camera_feed_id") { | 
					
						
							|  |  |  | 		if (bg_mode != BG_CAMERA_FEED) { | 
					
						
							|  |  |  | 			property.usage = PROPERTY_USAGE_NOEDITOR; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	static const char *hide_prefixes[] = { | 
					
						
							|  |  |  | 		"fog_", | 
					
						
							|  |  |  | 		"auto_exposure_", | 
					
						
							|  |  |  | 		"ss_reflections_", | 
					
						
							|  |  |  | 		"ssao_", | 
					
						
							|  |  |  | 		"dof_blur_far_", | 
					
						
							|  |  |  | 		"dof_blur_near_", | 
					
						
							|  |  |  | 		"glow_", | 
					
						
							|  |  |  | 		"adjustment_", | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | 		nullptr | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-14 12:59:31 -03:00
										 |  |  | 	static const char *high_end_prefixes[] = { | 
					
						
							|  |  |  | 		"auto_exposure_", | 
					
						
							|  |  |  | 		"tonemap_", | 
					
						
							|  |  |  | 		"ss_reflections_", | 
					
						
							|  |  |  | 		"ssao_", | 
					
						
							| 
									
										
										
										
											2021-05-04 16:00:45 +02:00
										 |  |  | 		nullptr | 
					
						
							| 
									
										
										
										
											2019-01-14 12:59:31 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	const char **prefixes = hide_prefixes; | 
					
						
							|  |  |  | 	while (*prefixes) { | 
					
						
							|  |  |  | 		String prefix = String(*prefixes); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		String enabled = prefix + "enabled"; | 
					
						
							|  |  |  | 		if (property.name.begins_with(prefix) && property.name != enabled && !bool(get(enabled))) { | 
					
						
							| 
									
										
										
										
											2018-01-12 00:35:12 +02:00
										 |  |  | 			property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL; | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		prefixes++; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2019-01-14 12:59:31 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (VisualServer::get_singleton()->is_low_end()) { | 
					
						
							|  |  |  | 		prefixes = high_end_prefixes; | 
					
						
							|  |  |  | 		while (*prefixes) { | 
					
						
							|  |  |  | 			String prefix = String(*prefixes); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if (property.name.begins_with(prefix)) { | 
					
						
							|  |  |  | 				property.usage = PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL; | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			prefixes++; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | void Environment::set_ssr_enabled(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssr_enabled = p_enable; | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	_change_notify(); | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool Environment::is_ssr_enabled() const { | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | 	return ssr_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ssr_max_steps(int p_steps) { | 
					
						
							|  |  |  | 	ssr_max_steps = p_steps; | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness); | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | } | 
					
						
							|  |  |  | int Environment::get_ssr_max_steps() const { | 
					
						
							|  |  |  | 	return ssr_max_steps; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | void Environment::set_ssr_fade_in(float p_fade_in) { | 
					
						
							|  |  |  | 	ssr_fade_in = p_fade_in; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness); | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | float Environment::get_ssr_fade_in() const { | 
					
						
							|  |  |  | 	return ssr_fade_in; | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | void Environment::set_ssr_fade_out(float p_fade_out) { | 
					
						
							|  |  |  | 	ssr_fade_out = p_fade_out; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness); | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | float Environment::get_ssr_fade_out() const { | 
					
						
							|  |  |  | 	return ssr_fade_out; | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_ssr_depth_tolerance(float p_depth_tolerance) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssr_depth_tolerance = p_depth_tolerance; | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness); | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_ssr_depth_tolerance() const { | 
					
						
							|  |  |  | 	return ssr_depth_tolerance; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_ssr_rough(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssr_roughness = p_enable; | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssr(environment, ssr_enabled, ssr_max_steps, ssr_fade_in, ssr_fade_out, ssr_depth_tolerance, ssr_roughness); | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | } | 
					
						
							|  |  |  | bool Environment::is_ssr_rough() const { | 
					
						
							|  |  |  | 	return ssr_roughness; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | void Environment::set_ssao_enabled(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssao_enabled = p_enable; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	_change_notify(); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool Environment::is_ssao_enabled() const { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 	return ssao_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ssao_radius(float p_radius) { | 
					
						
							|  |  |  | 	ssao_radius = p_radius; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_ssao_radius() const { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 	return ssao_radius; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ssao_intensity(float p_intensity) { | 
					
						
							|  |  |  | 	ssao_intensity = p_intensity; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_ssao_intensity() const { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 	return ssao_intensity; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ssao_radius2(float p_radius) { | 
					
						
							|  |  |  | 	ssao_radius2 = p_radius; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_ssao_radius2() const { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 	return ssao_radius2; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ssao_intensity2(float p_intensity) { | 
					
						
							|  |  |  | 	ssao_intensity2 = p_intensity; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_ssao_intensity2() const { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 	return ssao_intensity2; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ssao_bias(float p_bias) { | 
					
						
							|  |  |  | 	ssao_bias = p_bias; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_ssao_bias() const { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 	return ssao_bias; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ssao_direct_light_affect(float p_direct_light_affect) { | 
					
						
							|  |  |  | 	ssao_direct_light_affect = p_direct_light_affect; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_ssao_direct_light_affect() const { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 	return ssao_direct_light_affect; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | void Environment::set_ssao_ao_channel_affect(float p_ao_channel_affect) { | 
					
						
							|  |  |  | 	ssao_ao_channel_affect = p_ao_channel_affect; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | float Environment::get_ssao_ao_channel_affect() const { | 
					
						
							|  |  |  | 	return ssao_ao_channel_affect; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ssao_color(const Color &p_color) { | 
					
						
							|  |  |  | 	ssao_color = p_color; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color Environment::get_ssao_color() const { | 
					
						
							|  |  |  | 	return ssao_color; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | void Environment::set_ssao_blur(SSAOBlur p_blur) { | 
					
						
							|  |  |  | 	ssao_blur = p_blur; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | Environment::SSAOBlur Environment::get_ssao_blur() const { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 	return ssao_blur; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | void Environment::set_ssao_quality(SSAOQuality p_quality) { | 
					
						
							|  |  |  | 	ssao_quality = p_quality; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Environment::SSAOQuality Environment::get_ssao_quality() const { | 
					
						
							|  |  |  | 	return ssao_quality; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_ssao_edge_sharpness(float p_edge_sharpness) { | 
					
						
							|  |  |  | 	ssao_edge_sharpness = p_edge_sharpness; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_ao_channel_affect, ssao_color, VS::EnvironmentSSAOQuality(ssao_quality), VS::EnvironmentSSAOBlur(ssao_blur), ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | float Environment::get_ssao_edge_sharpness() const { | 
					
						
							|  |  |  | 	return ssao_edge_sharpness; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | void Environment::set_glow_enabled(bool p_enabled) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	glow_enabled = p_enabled; | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	_change_notify(); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool Environment::is_glow_enabled() const { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 	return glow_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_glow_level(int p_level, bool p_enabled) { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX(p_level, VS::MAX_GLOW_LEVELS); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	if (p_enabled) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		glow_levels |= (1 << p_level); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		glow_levels &= ~(1 << p_level); | 
					
						
							| 
									
										
										
										
											2021-05-05 12:44:11 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool Environment::is_glow_level_enabled(int p_level) const { | 
					
						
							|  |  |  | 	ERR_FAIL_INDEX_V(p_level, VS::MAX_GLOW_LEVELS, false); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	return glow_levels & (1 << p_level); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_glow_intensity(float p_intensity) { | 
					
						
							|  |  |  | 	glow_intensity = p_intensity; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_glow_intensity() const { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 	return glow_intensity; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_glow_strength(float p_strength) { | 
					
						
							|  |  |  | 	glow_strength = p_strength; | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_glow_strength() const { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 	return glow_strength; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-08 22:12:18 +07:00
										 |  |  | void Environment::set_glow_bloom(float p_threshold) { | 
					
						
							|  |  |  | 	glow_bloom = p_threshold; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_glow_bloom() const { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 	return glow_bloom; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_glow_blend_mode(GlowBlendMode p_mode) { | 
					
						
							|  |  |  | 	glow_blend_mode = p_mode; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Environment::GlowBlendMode Environment::get_glow_blend_mode() const { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 	return glow_blend_mode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-08 22:12:18 +07:00
										 |  |  | void Environment::set_glow_hdr_bleed_threshold(float p_threshold) { | 
					
						
							|  |  |  | 	glow_hdr_bleed_threshold = p_threshold; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-07-08 22:12:18 +07:00
										 |  |  | float Environment::get_glow_hdr_bleed_threshold() const { | 
					
						
							|  |  |  | 	return glow_hdr_bleed_threshold; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-28 10:21:07 +01:00
										 |  |  | void Environment::set_glow_hdr_luminance_cap(float p_amount) { | 
					
						
							|  |  |  | 	glow_hdr_luminance_cap = p_amount; | 
					
						
							| 
									
										
										
										
											2018-11-28 01:22:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							| 
									
										
										
										
											2018-11-28 01:22:20 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_glow_hdr_luminance_cap() const { | 
					
						
							|  |  |  | 	return glow_hdr_luminance_cap; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_glow_hdr_bleed_scale(float p_scale) { | 
					
						
							|  |  |  | 	glow_hdr_bleed_scale = p_scale; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_glow_hdr_bleed_scale() const { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 	return glow_hdr_bleed_scale; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | void Environment::set_glow_bicubic_upscale(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	glow_bicubic_upscale = p_enable; | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool Environment::is_glow_bicubic_upscale_enabled() const { | 
					
						
							|  |  |  | 	return glow_bicubic_upscale; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | void Environment::set_glow_high_quality(bool p_enable) { | 
					
						
							|  |  |  | 	glow_high_quality = p_enable; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_glow(environment, glow_enabled, glow_levels, glow_intensity, glow_strength, glow_bloom, VS::EnvironmentGlowBlendMode(glow_blend_mode), glow_hdr_bleed_threshold, glow_hdr_bleed_scale, glow_hdr_luminance_cap, glow_bicubic_upscale, glow_high_quality); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool Environment::is_glow_high_quality_enabled() const { | 
					
						
							|  |  |  | 	return glow_high_quality; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | void Environment::set_dof_blur_far_enabled(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	dof_blur_far_enabled = p_enable; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_dof_blur_far(environment, dof_blur_far_enabled, dof_blur_far_distance, dof_blur_far_transition, dof_blur_far_amount, VS::EnvironmentDOFBlurQuality(dof_blur_far_quality)); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	_change_notify(); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool Environment::is_dof_blur_far_enabled() const { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 	return dof_blur_far_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_dof_blur_far_distance(float p_distance) { | 
					
						
							|  |  |  | 	dof_blur_far_distance = p_distance; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_dof_blur_far(environment, dof_blur_far_enabled, dof_blur_far_distance, dof_blur_far_transition, dof_blur_far_amount, VS::EnvironmentDOFBlurQuality(dof_blur_far_quality)); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_dof_blur_far_distance() const { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 	return dof_blur_far_distance; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_dof_blur_far_transition(float p_distance) { | 
					
						
							|  |  |  | 	dof_blur_far_transition = p_distance; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_dof_blur_far(environment, dof_blur_far_enabled, dof_blur_far_distance, dof_blur_far_transition, dof_blur_far_amount, VS::EnvironmentDOFBlurQuality(dof_blur_far_quality)); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_dof_blur_far_transition() const { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 	return dof_blur_far_transition; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_dof_blur_far_amount(float p_amount) { | 
					
						
							|  |  |  | 	dof_blur_far_amount = p_amount; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_dof_blur_far(environment, dof_blur_far_enabled, dof_blur_far_distance, dof_blur_far_transition, dof_blur_far_amount, VS::EnvironmentDOFBlurQuality(dof_blur_far_quality)); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_dof_blur_far_amount() const { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 	return dof_blur_far_amount; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_dof_blur_far_quality(DOFBlurQuality p_quality) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	dof_blur_far_quality = p_quality; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_dof_blur_far(environment, dof_blur_far_enabled, dof_blur_far_distance, dof_blur_far_transition, dof_blur_far_amount, VS::EnvironmentDOFBlurQuality(dof_blur_far_quality)); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Environment::DOFBlurQuality Environment::get_dof_blur_far_quality() const { | 
					
						
							|  |  |  | 	return dof_blur_far_quality; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_dof_blur_near_enabled(bool p_enable) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	dof_blur_near_enabled = p_enable; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_dof_blur_near(environment, dof_blur_near_enabled, dof_blur_near_distance, dof_blur_near_transition, dof_blur_near_amount, VS::EnvironmentDOFBlurQuality(dof_blur_near_quality)); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	_change_notify(); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | bool Environment::is_dof_blur_near_enabled() const { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 	return dof_blur_near_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_dof_blur_near_distance(float p_distance) { | 
					
						
							|  |  |  | 	dof_blur_near_distance = p_distance; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_dof_blur_near(environment, dof_blur_near_enabled, dof_blur_near_distance, dof_blur_near_transition, dof_blur_near_amount, VS::EnvironmentDOFBlurQuality(dof_blur_near_quality)); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_dof_blur_near_distance() const { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 	return dof_blur_near_distance; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_dof_blur_near_transition(float p_distance) { | 
					
						
							|  |  |  | 	dof_blur_near_transition = p_distance; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_dof_blur_near(environment, dof_blur_near_enabled, dof_blur_near_distance, dof_blur_near_transition, dof_blur_near_amount, VS::EnvironmentDOFBlurQuality(dof_blur_near_quality)); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_dof_blur_near_transition() const { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 	return dof_blur_near_transition; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_dof_blur_near_amount(float p_amount) { | 
					
						
							|  |  |  | 	dof_blur_near_amount = p_amount; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_dof_blur_near(environment, dof_blur_near_enabled, dof_blur_near_distance, dof_blur_near_transition, dof_blur_near_amount, VS::EnvironmentDOFBlurQuality(dof_blur_near_quality)); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_dof_blur_near_amount() const { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 	return dof_blur_near_amount; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_dof_blur_near_quality(DOFBlurQuality p_quality) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	dof_blur_near_quality = p_quality; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_dof_blur_near(environment, dof_blur_near_enabled, dof_blur_near_distance, dof_blur_near_transition, dof_blur_near_amount, VS::EnvironmentDOFBlurQuality(dof_blur_near_quality)); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Environment::DOFBlurQuality Environment::get_dof_blur_near_quality() const { | 
					
						
							|  |  |  | 	return dof_blur_near_quality; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | void Environment::set_fog_enabled(bool p_enabled) { | 
					
						
							|  |  |  | 	fog_enabled = p_enabled; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog(environment, fog_enabled, fog_color, fog_sun_color, fog_sun_amount); | 
					
						
							|  |  |  | 	_change_notify(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool Environment::is_fog_enabled() const { | 
					
						
							|  |  |  | 	return fog_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_color(const Color &p_color) { | 
					
						
							|  |  |  | 	fog_color = p_color; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog(environment, fog_enabled, fog_color, fog_sun_color, fog_sun_amount); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | Color Environment::get_fog_color() const { | 
					
						
							|  |  |  | 	return fog_color; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_sun_color(const Color &p_color) { | 
					
						
							|  |  |  | 	fog_sun_color = p_color; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog(environment, fog_enabled, fog_color, fog_sun_color, fog_sun_amount); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | Color Environment::get_fog_sun_color() const { | 
					
						
							|  |  |  | 	return fog_sun_color; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_sun_amount(float p_amount) { | 
					
						
							|  |  |  | 	fog_sun_amount = p_amount; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog(environment, fog_enabled, fog_color, fog_sun_color, fog_sun_amount); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | float Environment::get_fog_sun_amount() const { | 
					
						
							|  |  |  | 	return fog_sun_amount; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_depth_enabled(bool p_enabled) { | 
					
						
							|  |  |  | 	fog_depth_enabled = p_enabled; | 
					
						
							| 
									
										
										
										
											2018-11-13 17:19:11 -08:00
										 |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | } | 
					
						
							|  |  |  | bool Environment::is_fog_depth_enabled() const { | 
					
						
							|  |  |  | 	return fog_depth_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_depth_begin(float p_distance) { | 
					
						
							|  |  |  | 	fog_depth_begin = p_distance; | 
					
						
							| 
									
										
										
										
											2018-11-13 17:19:11 -08:00
										 |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_fog_depth_begin() const { | 
					
						
							|  |  |  | 	return fog_depth_begin; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 17:19:11 -08:00
										 |  |  | void Environment::set_fog_depth_end(float p_distance) { | 
					
						
							|  |  |  | 	fog_depth_end = p_distance; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | float Environment::get_fog_depth_end() const { | 
					
						
							|  |  |  | 	return fog_depth_end; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | void Environment::set_fog_depth_curve(float p_curve) { | 
					
						
							|  |  |  | 	fog_depth_curve = p_curve; | 
					
						
							| 
									
										
										
										
											2018-11-13 17:19:11 -08:00
										 |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_fog_depth_curve() const { | 
					
						
							|  |  |  | 	return fog_depth_curve; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_transmit_enabled(bool p_enabled) { | 
					
						
							|  |  |  | 	fog_transmit_enabled = p_enabled; | 
					
						
							| 
									
										
										
										
											2018-11-13 17:19:11 -08:00
										 |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | } | 
					
						
							|  |  |  | bool Environment::is_fog_transmit_enabled() const { | 
					
						
							|  |  |  | 	return fog_transmit_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_transmit_curve(float p_curve) { | 
					
						
							|  |  |  | 	fog_transmit_curve = p_curve; | 
					
						
							| 
									
										
										
										
											2018-11-13 17:19:11 -08:00
										 |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_end, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | } | 
					
						
							|  |  |  | float Environment::get_fog_transmit_curve() const { | 
					
						
							|  |  |  | 	return fog_transmit_curve; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_height_enabled(bool p_enabled) { | 
					
						
							|  |  |  | 	fog_height_enabled = p_enabled; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog_height(environment, fog_height_enabled, fog_height_min, fog_height_max, fog_height_curve); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | bool Environment::is_fog_height_enabled() const { | 
					
						
							|  |  |  | 	return fog_height_enabled; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_height_min(float p_distance) { | 
					
						
							|  |  |  | 	fog_height_min = p_distance; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog_height(environment, fog_height_enabled, fog_height_min, fog_height_max, fog_height_curve); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | float Environment::get_fog_height_min() const { | 
					
						
							|  |  |  | 	return fog_height_min; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_height_max(float p_distance) { | 
					
						
							|  |  |  | 	fog_height_max = p_distance; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog_height(environment, fog_height_enabled, fog_height_min, fog_height_max, fog_height_curve); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | float Environment::get_fog_height_max() const { | 
					
						
							|  |  |  | 	return fog_height_max; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_height_curve(float p_distance) { | 
					
						
							|  |  |  | 	fog_height_curve = p_distance; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog_height(environment, fog_height_enabled, fog_height_min, fog_height_max, fog_height_curve); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | float Environment::get_fog_height_curve() const { | 
					
						
							|  |  |  | 	return fog_height_curve; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void Environment::_bind_methods() { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_background", "mode"), &Environment::set_background); | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_sky", "sky"), &Environment::set_sky); | 
					
						
							| 
									
										
										
										
											2017-09-29 18:56:05 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_sky_custom_fov", "scale"), &Environment::set_sky_custom_fov); | 
					
						
							| 
									
										
										
										
											2018-12-15 16:27:03 +11:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_sky_orientation", "orientation"), &Environment::set_sky_orientation); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_sky_rotation", "euler_radians"), &Environment::set_sky_rotation); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_sky_rotation_degrees", "euler_degrees"), &Environment::set_sky_rotation_degrees); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_bg_color", "color"), &Environment::set_bg_color); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_bg_energy", "energy"), &Environment::set_bg_energy); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_canvas_max_layer", "layer"), &Environment::set_canvas_max_layer); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_ambient_light_color", "color"), &Environment::set_ambient_light_color); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_ambient_light_energy", "energy"), &Environment::set_ambient_light_energy); | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ambient_light_sky_contribution", "energy"), &Environment::set_ambient_light_sky_contribution); | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_camera_feed_id", "camera_feed_id"), &Environment::set_camera_feed_id); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_background"), &Environment::get_background); | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_sky"), &Environment::get_sky); | 
					
						
							| 
									
										
										
										
											2017-09-29 18:56:05 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_sky_custom_fov"), &Environment::get_sky_custom_fov); | 
					
						
							| 
									
										
										
										
											2018-12-15 16:27:03 +11:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_sky_orientation"), &Environment::get_sky_orientation); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_sky_rotation"), &Environment::get_sky_rotation); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_sky_rotation_degrees"), &Environment::get_sky_rotation_degrees); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_bg_color"), &Environment::get_bg_color); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_bg_energy"), &Environment::get_bg_energy); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_canvas_max_layer"), &Environment::get_canvas_max_layer); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ambient_light_color"), &Environment::get_ambient_light_color); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ambient_light_energy"), &Environment::get_ambient_light_energy); | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_ambient_light_sky_contribution"), &Environment::get_ambient_light_sky_contribution); | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_camera_feed_id"), &Environment::get_camera_feed_id); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADD_GROUP("Background", "background_"); | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "background_mode", PROPERTY_HINT_ENUM, "Clear Color,Custom Color,Sky,Color+Sky,Canvas,Keep,Camera Feed"), "set_background", "get_background"); | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "background_sky", PROPERTY_HINT_RESOURCE_TYPE, "Sky"), "set_sky", "get_sky"); | 
					
						
							| 
									
										
										
										
											2017-09-29 18:56:05 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "background_sky_custom_fov", PROPERTY_HINT_RANGE, "0,180,0.1"), "set_sky_custom_fov", "get_sky_custom_fov"); | 
					
						
							| 
									
										
										
										
											2018-12-15 16:27:03 +11:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BASIS, "background_sky_orientation"), "set_sky_orientation", "get_sky_orientation"); | 
					
						
							| 
									
										
										
										
											2019-11-26 16:39:50 +01:00
										 |  |  | 	// Only display rotation in degrees in the inspector (like in Spatial).
 | 
					
						
							|  |  |  | 	// This avoids displaying the same information twice.
 | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "background_sky_rotation", PROPERTY_HINT_NONE, "", 0), "set_sky_rotation", "get_sky_rotation"); | 
					
						
							| 
									
										
										
										
											2018-12-15 16:27:03 +11:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "background_sky_rotation_degrees", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_EDITOR), "set_sky_rotation_degrees", "get_sky_rotation_degrees"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::COLOR, "background_color"), "set_bg_color", "get_bg_color"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "background_energy", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_bg_energy", "get_bg_energy"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "background_canvas_max_layer", PROPERTY_HINT_RANGE, "-1000,1000,1"), "set_canvas_max_layer", "get_canvas_max_layer"); | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "background_camera_feed_id", PROPERTY_HINT_RANGE, "1,10,1"), "set_camera_feed_id", "get_camera_feed_id"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_GROUP("Ambient Light", "ambient_light_"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::COLOR, "ambient_light_color"), "set_ambient_light_color", "get_ambient_light_color"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ambient_light_energy", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_ambient_light_energy", "get_ambient_light_energy"); | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ambient_light_sky_contribution", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_ambient_light_sky_contribution", "get_ambient_light_sky_contribution"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_enabled", "enabled"), &Environment::set_fog_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_fog_enabled"), &Environment::is_fog_enabled); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_color", "color"), &Environment::set_fog_color); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_fog_color"), &Environment::get_fog_color); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_sun_color", "color"), &Environment::set_fog_sun_color); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_fog_sun_color"), &Environment::get_fog_sun_color); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_sun_amount", "amount"), &Environment::set_fog_sun_amount); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_fog_sun_amount"), &Environment::get_fog_sun_amount); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_depth_enabled", "enabled"), &Environment::set_fog_depth_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_fog_depth_enabled"), &Environment::is_fog_depth_enabled); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_depth_begin", "distance"), &Environment::set_fog_depth_begin); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_fog_depth_begin"), &Environment::get_fog_depth_begin); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-13 17:19:11 -08:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_depth_end", "distance"), &Environment::set_fog_depth_end); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_fog_depth_end"), &Environment::get_fog_depth_end); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_depth_curve", "curve"), &Environment::set_fog_depth_curve); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_fog_depth_curve"), &Environment::get_fog_depth_curve); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_transmit_enabled", "enabled"), &Environment::set_fog_transmit_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_fog_transmit_enabled"), &Environment::is_fog_transmit_enabled); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_transmit_curve", "curve"), &Environment::set_fog_transmit_curve); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_fog_transmit_curve"), &Environment::get_fog_transmit_curve); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_height_enabled", "enabled"), &Environment::set_fog_height_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_fog_height_enabled"), &Environment::is_fog_height_enabled); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_height_min", "height"), &Environment::set_fog_height_min); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_fog_height_min"), &Environment::get_fog_height_min); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_height_max", "height"), &Environment::set_fog_height_max); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_fog_height_max"), &Environment::get_fog_height_max); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_fog_height_curve", "curve"), &Environment::set_fog_height_curve); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_fog_height_curve"), &Environment::get_fog_height_curve); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ADD_GROUP("Fog", "fog_"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "fog_enabled"), "set_fog_enabled", "is_fog_enabled"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::COLOR, "fog_color"), "set_fog_color", "get_fog_color"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::COLOR, "fog_sun_color"), "set_fog_sun_color", "get_fog_sun_color"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_sun_amount", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_fog_sun_amount", "get_fog_sun_amount"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "fog_depth_enabled"), "set_fog_depth_enabled", "is_fog_depth_enabled"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_depth_begin", PROPERTY_HINT_RANGE, "0,4000,0.1"), "set_fog_depth_begin", "get_fog_depth_begin"); | 
					
						
							| 
									
										
										
										
											2018-11-13 17:19:11 -08:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_depth_end", PROPERTY_HINT_RANGE, "0,4000,0.1,or_greater"), "set_fog_depth_end", "get_fog_depth_end"); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_depth_curve", PROPERTY_HINT_EXP_EASING), "set_fog_depth_curve", "get_fog_depth_curve"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "fog_transmit_enabled"), "set_fog_transmit_enabled", "is_fog_transmit_enabled"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_transmit_curve", PROPERTY_HINT_EXP_EASING), "set_fog_transmit_curve", "get_fog_transmit_curve"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "fog_height_enabled"), "set_fog_height_enabled", "is_fog_height_enabled"); | 
					
						
							| 
									
										
										
										
											2019-07-20 17:26:45 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_height_min", PROPERTY_HINT_RANGE, "-4000,4000,0.1,or_lesser,or_greater"), "set_fog_height_min", "get_fog_height_min"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_height_max", PROPERTY_HINT_RANGE, "-4000,4000,0.1,or_lesser,or_greater"), "set_fog_height_max", "get_fog_height_max"); | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_height_curve", PROPERTY_HINT_EXP_EASING), "set_fog_height_curve", "get_fog_height_curve"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-29 22:11:33 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_tonemapper", "mode"), &Environment::set_tonemapper); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_tonemapper"), &Environment::get_tonemapper); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_tonemap_exposure", "exposure"), &Environment::set_tonemap_exposure); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_tonemap_exposure"), &Environment::get_tonemap_exposure); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_tonemap_white", "white"), &Environment::set_tonemap_white); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_tonemap_white"), &Environment::get_tonemap_white); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_tonemap_auto_exposure", "auto_exposure"), &Environment::set_tonemap_auto_exposure); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_tonemap_auto_exposure"), &Environment::get_tonemap_auto_exposure); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_tonemap_auto_exposure_max", "exposure_max"), &Environment::set_tonemap_auto_exposure_max); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_tonemap_auto_exposure_max"), &Environment::get_tonemap_auto_exposure_max); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_tonemap_auto_exposure_min", "exposure_min"), &Environment::set_tonemap_auto_exposure_min); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_tonemap_auto_exposure_min"), &Environment::get_tonemap_auto_exposure_min); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_tonemap_auto_exposure_speed", "exposure_speed"), &Environment::set_tonemap_auto_exposure_speed); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_tonemap_auto_exposure_speed"), &Environment::get_tonemap_auto_exposure_speed); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_tonemap_auto_exposure_grey", "exposure_grey"), &Environment::set_tonemap_auto_exposure_grey); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_tonemap_auto_exposure_grey"), &Environment::get_tonemap_auto_exposure_grey); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ADD_GROUP("Tonemap", "tonemap_"); | 
					
						
							| 
									
										
										
										
											2021-09-07 16:26:20 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "tonemap_mode", PROPERTY_HINT_ENUM, "Linear,Reinhard,Filmic,ACES,ACES Fitted"), "set_tonemapper", "get_tonemapper"); | 
					
						
							| 
									
										
										
										
											2017-05-29 22:11:33 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "tonemap_exposure", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_tonemap_exposure", "get_tonemap_exposure"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "tonemap_white", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_tonemap_white", "get_tonemap_white"); | 
					
						
							|  |  |  | 	ADD_GROUP("Auto Exposure", "auto_exposure_"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "auto_exposure_enabled"), "set_tonemap_auto_exposure", "get_tonemap_auto_exposure"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "auto_exposure_scale", PROPERTY_HINT_RANGE, "0.01,64,0.01"), "set_tonemap_auto_exposure_grey", "get_tonemap_auto_exposure_grey"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "auto_exposure_min_luma", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_tonemap_auto_exposure_min", "get_tonemap_auto_exposure_min"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "auto_exposure_max_luma", PROPERTY_HINT_RANGE, "0,16,0.01"), "set_tonemap_auto_exposure_max", "get_tonemap_auto_exposure_max"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "auto_exposure_speed", PROPERTY_HINT_RANGE, "0.01,64,0.01"), "set_tonemap_auto_exposure_speed", "get_tonemap_auto_exposure_speed"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssr_enabled", "enabled"), &Environment::set_ssr_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_ssr_enabled"), &Environment::is_ssr_enabled); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_ssr_max_steps", "max_steps"), &Environment::set_ssr_max_steps); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssr_max_steps"), &Environment::get_ssr_max_steps); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssr_fade_in", "fade_in"), &Environment::set_ssr_fade_in); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssr_fade_in"), &Environment::get_ssr_fade_in); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssr_fade_out", "fade_out"), &Environment::set_ssr_fade_out); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssr_fade_out"), &Environment::get_ssr_fade_out); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_ssr_depth_tolerance", "depth_tolerance"), &Environment::set_ssr_depth_tolerance); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssr_depth_tolerance"), &Environment::get_ssr_depth_tolerance); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_ssr_rough", "rough"), &Environment::set_ssr_rough); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_ssr_rough"), &Environment::is_ssr_rough); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ADD_GROUP("SS Reflections", "ss_reflections_"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "ss_reflections_enabled"), "set_ssr_enabled", "is_ssr_enabled"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "ss_reflections_max_steps", PROPERTY_HINT_RANGE, "1,512,1"), "set_ssr_max_steps", "get_ssr_max_steps"); | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ss_reflections_fade_in", PROPERTY_HINT_EXP_EASING), "set_ssr_fade_in", "get_ssr_fade_in"); | 
					
						
							| 
									
										
										
										
											2017-06-15 23:07:38 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ss_reflections_fade_out", PROPERTY_HINT_EXP_EASING), "set_ssr_fade_out", "get_ssr_fade_out"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ss_reflections_depth_tolerance", PROPERTY_HINT_RANGE, "0.1,128,0.1"), "set_ssr_depth_tolerance", "get_ssr_depth_tolerance"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "ss_reflections_roughness"), "set_ssr_rough", "is_ssr_rough"); | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_enabled", "enabled"), &Environment::set_ssao_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_ssao_enabled"), &Environment::is_ssao_enabled); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_radius", "radius"), &Environment::set_ssao_radius); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_radius"), &Environment::get_ssao_radius); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_intensity", "intensity"), &Environment::set_ssao_intensity); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_intensity"), &Environment::get_ssao_intensity); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_radius2", "radius"), &Environment::set_ssao_radius2); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_radius2"), &Environment::get_ssao_radius2); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_intensity2", "intensity"), &Environment::set_ssao_intensity2); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_intensity2"), &Environment::get_ssao_intensity2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_bias", "bias"), &Environment::set_ssao_bias); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_bias"), &Environment::get_ssao_bias); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_direct_light_affect", "amount"), &Environment::set_ssao_direct_light_affect); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_direct_light_affect"), &Environment::get_ssao_direct_light_affect); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_ao_channel_affect", "amount"), &Environment::set_ssao_ao_channel_affect); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_ao_channel_affect"), &Environment::get_ssao_ao_channel_affect); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_color", "color"), &Environment::set_ssao_color); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_color"), &Environment::get_ssao_color); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_blur", "mode"), &Environment::set_ssao_blur); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_blur"), &Environment::get_ssao_blur); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_quality", "quality"), &Environment::set_ssao_quality); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_quality"), &Environment::get_ssao_quality); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_edge_sharpness", "edge_sharpness"), &Environment::set_ssao_edge_sharpness); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_ssao_edge_sharpness"), &Environment::get_ssao_edge_sharpness); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADD_GROUP("SSAO", "ssao_"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "ssao_enabled"), "set_ssao_enabled", "is_ssao_enabled"); | 
					
						
							| 
									
										
										
										
											2020-04-23 21:59:53 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_radius", PROPERTY_HINT_RANGE, "0.1,128,0.01"), "set_ssao_radius", "get_ssao_radius"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_intensity", PROPERTY_HINT_RANGE, "0.0,128,0.01"), "set_ssao_intensity", "get_ssao_intensity"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_radius2", PROPERTY_HINT_RANGE, "0.0,128,0.01"), "set_ssao_radius2", "get_ssao_radius2"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_intensity2", PROPERTY_HINT_RANGE, "0.0,128,0.01"), "set_ssao_intensity2", "get_ssao_intensity2"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_bias", PROPERTY_HINT_RANGE, "0.001,8,0.001"), "set_ssao_bias", "get_ssao_bias"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_light_affect", PROPERTY_HINT_RANGE, "0.00,1,0.01"), "set_ssao_direct_light_affect", "get_ssao_direct_light_affect"); | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_ao_channel_affect", PROPERTY_HINT_RANGE, "0.00,1,0.01"), "set_ssao_ao_channel_affect", "get_ssao_ao_channel_affect"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::COLOR, "ssao_color", PROPERTY_HINT_COLOR_NO_ALPHA), "set_ssao_color", "get_ssao_color"); | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "ssao_quality", PROPERTY_HINT_ENUM, "Low,Medium,High"), "set_ssao_quality", "get_ssao_quality"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "ssao_blur", PROPERTY_HINT_ENUM, "Disabled,1x1,2x2,3x3"), "set_ssao_blur", "get_ssao_blur"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_edge_sharpness", PROPERTY_HINT_RANGE, "0,32,0.01"), "set_ssao_edge_sharpness", "get_ssao_edge_sharpness"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_dof_blur_far_enabled", "enabled"), &Environment::set_dof_blur_far_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_dof_blur_far_enabled"), &Environment::is_dof_blur_far_enabled); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_dof_blur_far_distance", "intensity"), &Environment::set_dof_blur_far_distance); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_dof_blur_far_distance"), &Environment::get_dof_blur_far_distance); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_dof_blur_far_transition", "intensity"), &Environment::set_dof_blur_far_transition); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_dof_blur_far_transition"), &Environment::get_dof_blur_far_transition); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_dof_blur_far_amount", "intensity"), &Environment::set_dof_blur_far_amount); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_dof_blur_far_amount"), &Environment::get_dof_blur_far_amount); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_dof_blur_far_quality", "intensity"), &Environment::set_dof_blur_far_quality); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_dof_blur_far_quality"), &Environment::get_dof_blur_far_quality); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_dof_blur_near_enabled", "enabled"), &Environment::set_dof_blur_near_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_dof_blur_near_enabled"), &Environment::is_dof_blur_near_enabled); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_dof_blur_near_distance", "intensity"), &Environment::set_dof_blur_near_distance); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_dof_blur_near_distance"), &Environment::get_dof_blur_near_distance); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_dof_blur_near_transition", "intensity"), &Environment::set_dof_blur_near_transition); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_dof_blur_near_transition"), &Environment::get_dof_blur_near_transition); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_dof_blur_near_amount", "intensity"), &Environment::set_dof_blur_near_amount); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_dof_blur_near_amount"), &Environment::get_dof_blur_near_amount); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_dof_blur_near_quality", "level"), &Environment::set_dof_blur_near_quality); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_dof_blur_near_quality"), &Environment::get_dof_blur_near_quality); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_GROUP("DOF Far Blur", "dof_blur_far_"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dof_blur_far_enabled"), "set_dof_blur_far_enabled", "is_dof_blur_far_enabled"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_far_distance", PROPERTY_HINT_EXP_RANGE, "0.01,8192,0.01"), "set_dof_blur_far_distance", "get_dof_blur_far_distance"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_far_transition", PROPERTY_HINT_EXP_RANGE, "0.01,8192,0.01"), "set_dof_blur_far_transition", "get_dof_blur_far_transition"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_far_amount", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_dof_blur_far_amount", "get_dof_blur_far_amount"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "dof_blur_far_quality", PROPERTY_HINT_ENUM, "Low,Medium,High"), "set_dof_blur_far_quality", "get_dof_blur_far_quality"); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-24 15:58:39 +07:00
										 |  |  | 	ADD_GROUP("DOF Near Blur", "dof_blur_near_"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "dof_blur_near_enabled"), "set_dof_blur_near_enabled", "is_dof_blur_near_enabled"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_near_distance", PROPERTY_HINT_EXP_RANGE, "0.01,8192,0.01"), "set_dof_blur_near_distance", "get_dof_blur_near_distance"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_near_transition", PROPERTY_HINT_EXP_RANGE, "0.01,8192,0.01"), "set_dof_blur_near_transition", "get_dof_blur_near_transition"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "dof_blur_near_amount", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_dof_blur_near_amount", "get_dof_blur_near_amount"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "dof_blur_near_quality", PROPERTY_HINT_ENUM, "Low,Medium,High"), "set_dof_blur_near_quality", "get_dof_blur_near_quality"); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_enabled", "enabled"), &Environment::set_glow_enabled); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_glow_enabled"), &Environment::is_glow_enabled); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_level", "idx", "enabled"), &Environment::set_glow_level); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_glow_level_enabled", "idx"), &Environment::is_glow_level_enabled); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_intensity", "intensity"), &Environment::set_glow_intensity); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_glow_intensity"), &Environment::get_glow_intensity); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_strength", "strength"), &Environment::set_glow_strength); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_glow_strength"), &Environment::get_glow_strength); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_bloom", "amount"), &Environment::set_glow_bloom); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_glow_bloom"), &Environment::get_glow_bloom); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_blend_mode", "mode"), &Environment::set_glow_blend_mode); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_glow_blend_mode"), &Environment::get_glow_blend_mode); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-08 22:12:18 +07:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_hdr_bleed_threshold", "threshold"), &Environment::set_glow_hdr_bleed_threshold); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_glow_hdr_bleed_threshold"), &Environment::get_glow_hdr_bleed_threshold); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-28 01:22:20 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_hdr_luminance_cap", "amount"), &Environment::set_glow_hdr_luminance_cap); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_glow_hdr_luminance_cap"), &Environment::get_glow_hdr_luminance_cap); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_hdr_bleed_scale", "scale"), &Environment::set_glow_hdr_bleed_scale); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_glow_hdr_bleed_scale"), &Environment::get_glow_hdr_bleed_scale); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_bicubic_upscale", "enabled"), &Environment::set_glow_bicubic_upscale); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_glow_bicubic_upscale_enabled"), &Environment::is_glow_bicubic_upscale_enabled); | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_high_quality", "enabled"), &Environment::set_glow_high_quality); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_glow_high_quality_enabled"), &Environment::is_glow_high_quality_enabled); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_GROUP("Glow", "glow_"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "glow_enabled"), "set_glow_enabled", "is_glow_enabled"); | 
					
						
							|  |  |  | 	ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/1"), "set_glow_level", "is_glow_level_enabled", 0); | 
					
						
							|  |  |  | 	ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/2"), "set_glow_level", "is_glow_level_enabled", 1); | 
					
						
							|  |  |  | 	ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/3"), "set_glow_level", "is_glow_level_enabled", 2); | 
					
						
							|  |  |  | 	ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/4"), "set_glow_level", "is_glow_level_enabled", 3); | 
					
						
							|  |  |  | 	ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/5"), "set_glow_level", "is_glow_level_enabled", 4); | 
					
						
							|  |  |  | 	ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/6"), "set_glow_level", "is_glow_level_enabled", 5); | 
					
						
							|  |  |  | 	ADD_PROPERTYI(PropertyInfo(Variant::BOOL, "glow_levels/7"), "set_glow_level", "is_glow_level_enabled", 6); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_intensity", PROPERTY_HINT_RANGE, "0.0,8.0,0.01"), "set_glow_intensity", "get_glow_intensity"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_strength", PROPERTY_HINT_RANGE, "0.0,2.0,0.01"), "set_glow_strength", "get_glow_strength"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_bloom", PROPERTY_HINT_RANGE, "0.0,1.0,0.01"), "set_glow_bloom", "get_glow_bloom"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "glow_blend_mode", PROPERTY_HINT_ENUM, "Additive,Screen,Softlight,Replace"), "set_glow_blend_mode", "get_glow_blend_mode"); | 
					
						
							| 
									
										
										
										
											2017-07-08 22:12:18 +07:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_hdr_threshold", PROPERTY_HINT_RANGE, "0.0,4.0,0.01"), "set_glow_hdr_bleed_threshold", "get_glow_hdr_bleed_threshold"); | 
					
						
							| 
									
										
										
										
											2018-11-28 01:22:20 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_hdr_luminance_cap", PROPERTY_HINT_RANGE, "0.0,256.0,0.01"), "set_glow_hdr_luminance_cap", "get_glow_hdr_luminance_cap"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_hdr_scale", PROPERTY_HINT_RANGE, "0.0,4.0,0.01"), "set_glow_hdr_bleed_scale", "get_glow_hdr_bleed_scale"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "glow_bicubic_upscale"), "set_glow_bicubic_upscale", "is_glow_bicubic_upscale_enabled"); | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "glow_high_quality"), "set_glow_high_quality", "is_glow_high_quality_enabled"); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_adjustment_enable", "enabled"), &Environment::set_adjustment_enable); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_adjustment_enabled"), &Environment::is_adjustment_enabled); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_adjustment_brightness", "brightness"), &Environment::set_adjustment_brightness); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_adjustment_brightness"), &Environment::get_adjustment_brightness); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_adjustment_contrast", "contrast"), &Environment::set_adjustment_contrast); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_adjustment_contrast"), &Environment::get_adjustment_contrast); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_adjustment_saturation", "saturation"), &Environment::set_adjustment_saturation); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_adjustment_saturation"), &Environment::get_adjustment_saturation); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-09 13:19:41 +02:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_adjustment_color_correction", "color_correction"), &Environment::set_adjustment_color_correction); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_adjustment_color_correction"), &Environment::get_adjustment_color_correction); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ADD_GROUP("Adjustments", "adjustment_"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "adjustment_enabled"), "set_adjustment_enable", "is_adjustment_enabled"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "adjustment_brightness", PROPERTY_HINT_RANGE, "0.01,8,0.01"), "set_adjustment_brightness", "get_adjustment_brightness"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "adjustment_contrast", PROPERTY_HINT_RANGE, "0.01,8,0.01"), "set_adjustment_contrast", "get_adjustment_contrast"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "adjustment_saturation", PROPERTY_HINT_RANGE, "0.01,8,0.01"), "set_adjustment_saturation", "get_adjustment_saturation"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "adjustment_color_correction", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_adjustment_color_correction", "get_adjustment_color_correction"); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 17:45:01 +02:00
										 |  |  | 	BIND_ENUM_CONSTANT(BG_KEEP); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(BG_CLEAR_COLOR); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(BG_COLOR); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(BG_SKY); | 
					
						
							| 
									
										
										
										
											2017-09-07 20:45:37 -03:00
										 |  |  | 	BIND_ENUM_CONSTANT(BG_COLOR_SKY); | 
					
						
							| 
									
										
										
										
											2017-08-20 17:45:01 +02:00
										 |  |  | 	BIND_ENUM_CONSTANT(BG_CANVAS); | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	BIND_ENUM_CONSTANT(BG_CAMERA_FEED); | 
					
						
							| 
									
										
										
										
											2017-08-20 17:45:01 +02:00
										 |  |  | 	BIND_ENUM_CONSTANT(BG_MAX); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(GLOW_BLEND_MODE_ADDITIVE); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(GLOW_BLEND_MODE_SCREEN); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(GLOW_BLEND_MODE_SOFTLIGHT); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(GLOW_BLEND_MODE_REPLACE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(TONE_MAPPER_LINEAR); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(TONE_MAPPER_REINHARDT); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(TONE_MAPPER_FILMIC); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(TONE_MAPPER_ACES); | 
					
						
							| 
									
										
										
										
											2021-09-07 16:26:20 -03:00
										 |  |  | 	BIND_ENUM_CONSTANT(TONE_MAPPER_ACES_FITTED); | 
					
						
							| 
									
										
										
										
											2017-08-20 17:45:01 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(DOF_BLUR_QUALITY_LOW); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(DOF_BLUR_QUALITY_MEDIUM); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(DOF_BLUR_QUALITY_HIGH); | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-23 21:27:12 +11:00
										 |  |  | 	BIND_ENUM_CONSTANT(SSAO_BLUR_DISABLED); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(SSAO_BLUR_1x1); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(SSAO_BLUR_2x2); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(SSAO_BLUR_3x3); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | 	BIND_ENUM_CONSTANT(SSAO_QUALITY_LOW); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(SSAO_QUALITY_MEDIUM); | 
					
						
							|  |  |  | 	BIND_ENUM_CONSTANT(SSAO_QUALITY_HIGH); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-30 02:12:41 +01:00
										 |  |  | Environment::Environment() : | 
					
						
							|  |  |  | 		bg_mode(BG_CLEAR_COLOR), | 
					
						
							|  |  |  | 		tone_mapper(TONE_MAPPER_LINEAR), | 
					
						
							| 
									
										
										
										
											2019-05-26 11:50:25 +02:00
										 |  |  | 		ssao_blur(SSAO_BLUR_3x3), | 
					
						
							|  |  |  | 		ssao_quality(SSAO_QUALITY_MEDIUM), | 
					
						
							| 
									
										
										
										
											2019-01-30 02:12:41 +01:00
										 |  |  | 		glow_blend_mode(GLOW_BLEND_MODE_ADDITIVE), | 
					
						
							|  |  |  | 		dof_blur_far_quality(DOF_BLUR_QUALITY_LOW), | 
					
						
							|  |  |  | 		dof_blur_near_quality(DOF_BLUR_QUALITY_LOW) { | 
					
						
							| 
									
										
										
										
											2017-08-14 14:48:35 +03:00
										 |  |  | 	environment = VS::get_singleton()->environment_create(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bg_mode = BG_CLEAR_COLOR; | 
					
						
							| 
									
										
										
										
											2017-09-29 18:56:05 -03:00
										 |  |  | 	bg_sky_custom_fov = 0; | 
					
						
							| 
									
										
										
										
											2018-12-15 16:27:03 +11:00
										 |  |  | 	bg_sky_orientation = Basis(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bg_energy = 1.0; | 
					
						
							|  |  |  | 	bg_canvas_max_layer = 0; | 
					
						
							|  |  |  | 	ambient_energy = 1.0; | 
					
						
							| 
									
										
										
										
											2017-11-12 08:26:45 -03:00
										 |  |  | 	//ambient_sky_contribution = 1.0;
 | 
					
						
							|  |  |  | 	set_ambient_light_sky_contribution(1.0); | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	set_camera_feed_id(1); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	tone_mapper = TONE_MAPPER_LINEAR; | 
					
						
							|  |  |  | 	tonemap_exposure = 1.0; | 
					
						
							|  |  |  | 	tonemap_white = 1.0; | 
					
						
							|  |  |  | 	tonemap_auto_exposure = false; | 
					
						
							|  |  |  | 	tonemap_auto_exposure_max = 8; | 
					
						
							|  |  |  | 	tonemap_auto_exposure_min = 0.05; | 
					
						
							|  |  |  | 	tonemap_auto_exposure_speed = 0.5; | 
					
						
							|  |  |  | 	tonemap_auto_exposure_grey = 0.4; | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	set_tonemapper(tone_mapper); //update
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	adjustment_enabled = false; | 
					
						
							|  |  |  | 	adjustment_contrast = 1.0; | 
					
						
							|  |  |  | 	adjustment_saturation = 1.0; | 
					
						
							|  |  |  | 	adjustment_brightness = 1.0; | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	set_adjustment_enable(adjustment_enabled); //update
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssr_enabled = false; | 
					
						
							|  |  |  | 	ssr_max_steps = 64; | 
					
						
							| 
									
										
										
										
											2017-06-15 23:07:38 -03:00
										 |  |  | 	ssr_fade_in = 0.15; | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	ssr_fade_out = 2.0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssr_depth_tolerance = 0.2; | 
					
						
							|  |  |  | 	ssr_roughness = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ssao_enabled = false; | 
					
						
							|  |  |  | 	ssao_radius = 1; | 
					
						
							|  |  |  | 	ssao_intensity = 1; | 
					
						
							|  |  |  | 	ssao_radius2 = 0; | 
					
						
							|  |  |  | 	ssao_intensity2 = 1; | 
					
						
							|  |  |  | 	ssao_bias = 0.01; | 
					
						
							| 
									
										
										
										
											2018-01-03 21:17:30 -07:00
										 |  |  | 	ssao_direct_light_affect = 0.0; | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | 	ssao_ao_channel_affect = 0.0; | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | 	ssao_blur = SSAO_BLUR_3x3; | 
					
						
							|  |  |  | 	set_ssao_edge_sharpness(4); | 
					
						
							| 
									
										
										
										
											2019-05-26 11:50:25 +02:00
										 |  |  | 	set_ssao_quality(SSAO_QUALITY_MEDIUM); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	glow_enabled = false; | 
					
						
							|  |  |  | 	glow_levels = (1 << 2) | (1 << 4); | 
					
						
							|  |  |  | 	glow_intensity = 0.8; | 
					
						
							|  |  |  | 	glow_strength = 1.0; | 
					
						
							|  |  |  | 	glow_bloom = 0.0; | 
					
						
							|  |  |  | 	glow_blend_mode = GLOW_BLEND_MODE_SOFTLIGHT; | 
					
						
							| 
									
										
										
										
											2017-07-08 22:12:18 +07:00
										 |  |  | 	glow_hdr_bleed_threshold = 1.0; | 
					
						
							| 
									
										
										
										
											2018-11-28 01:22:20 -03:00
										 |  |  | 	glow_hdr_luminance_cap = 12.0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	glow_hdr_bleed_scale = 2.0; | 
					
						
							|  |  |  | 	glow_bicubic_upscale = false; | 
					
						
							| 
									
										
										
										
											2021-08-11 04:42:56 +02:00
										 |  |  | 	glow_high_quality = false; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dof_blur_far_enabled = false; | 
					
						
							|  |  |  | 	dof_blur_far_distance = 10; | 
					
						
							|  |  |  | 	dof_blur_far_transition = 5; | 
					
						
							|  |  |  | 	dof_blur_far_amount = 0.1; | 
					
						
							|  |  |  | 	dof_blur_far_quality = DOF_BLUR_QUALITY_MEDIUM; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dof_blur_near_enabled = false; | 
					
						
							|  |  |  | 	dof_blur_near_distance = 2; | 
					
						
							|  |  |  | 	dof_blur_near_transition = 1; | 
					
						
							|  |  |  | 	dof_blur_near_amount = 0.1; | 
					
						
							|  |  |  | 	dof_blur_near_quality = DOF_BLUR_QUALITY_MEDIUM; | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	fog_enabled = false; | 
					
						
							|  |  |  | 	fog_color = Color(0.5, 0.5, 0.5); | 
					
						
							|  |  |  | 	fog_sun_color = Color(0.8, 0.8, 0.0); | 
					
						
							|  |  |  | 	fog_sun_amount = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fog_depth_enabled = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fog_depth_begin = 10; | 
					
						
							| 
									
										
										
										
											2019-08-27 18:21:16 +02:00
										 |  |  | 	fog_depth_end = 100; | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	fog_depth_curve = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fog_transmit_enabled = false; | 
					
						
							|  |  |  | 	fog_transmit_curve = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fog_height_enabled = false; | 
					
						
							| 
									
										
										
										
											2019-07-20 17:26:45 +02:00
										 |  |  | 	fog_height_min = 10; | 
					
						
							|  |  |  | 	fog_height_max = 0; | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	fog_height_curve = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	set_fog_color(Color(0.5, 0.6, 0.7)); | 
					
						
							|  |  |  | 	set_fog_sun_color(Color(1.0, 0.9, 0.7)); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | Environment::~Environment() { | 
					
						
							|  |  |  | 	VS::get_singleton()->free(environment); | 
					
						
							|  |  |  | } |