| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  environment.cpp                                                      */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                    http://www.godotengine.org                         */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-01-01 22:01:57 +01:00
										 |  |  | /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							| 
									
										
										
										
											2017-04-08 00:11:42 +02:00
										 |  |  | /* Copyright (c) 2014-2017 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.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | #include "environment.h"
 | 
					
						
							| 
									
										
										
										
											2017-02-21 00:05:15 -03:00
										 |  |  | #include "global_config.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) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	bg_sky = p_sky; | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	RID sb_rid; | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	if (bg_sky.is_valid()) | 
					
						
							|  |  |  | 		sb_rid = bg_sky->get_rid(); | 
					
						
							| 
									
										
										
										
											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-05-25 13:53:59 -03:00
										 |  |  | void Environment::set_sky_scale(float p_scale) { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	bg_sky_scale = p_scale; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_sky_scale(environment, p_scale); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_bg_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	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-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 { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	return bg_sky; | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | float Environment::get_sky_scale() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	return bg_sky_scale; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | Color Environment::get_bg_color() const { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	return ambient_sky_contribution; | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-07 17:49:52 -03:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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 { | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-29 22:11:33 -03:00
										 |  |  | 	if (property.name == "background_sky" || property.name == "background_sky_scale" || property.name == "ambient_light/sky_contribution") { | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 		if (bg_mode != BG_SKY) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			property.usage = PROPERTY_USAGE_NOEDITOR; | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-29 22:11:33 -03:00
										 |  |  | 	if (property.name == "background_color") { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		if (bg_mode != BG_COLOR) { | 
					
						
							|  |  |  | 			property.usage = PROPERTY_USAGE_NOEDITOR; | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							|  |  |  | 			property.usage = PROPERTY_USAGE_NOEDITOR; | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											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_", | 
					
						
							|  |  |  | 		NULL | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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))) { | 
					
						
							|  |  |  | 			property.usage = PROPERTY_USAGE_NOEDITOR; | 
					
						
							|  |  |  | 			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) { | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	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 { | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	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 { | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-15 21:28:05 -03:00
										 |  |  | 	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; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_color, ssao_blur); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssao_radius = p_radius; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_color, ssao_blur); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssao_intensity = p_intensity; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_color, ssao_blur); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssao_radius2 = p_radius; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_color, ssao_blur); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssao_intensity2 = p_intensity; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_color, ssao_blur); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssao_bias = p_bias; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_color, ssao_blur); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssao_direct_light_affect = p_direct_light_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_color, ssao_blur); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_ssao_color(const Color &p_color) { | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssao_color = p_color; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_color, ssao_blur); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Color Environment::get_ssao_color() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ssao_color; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_ssao_blur(bool p_enable) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ssao_blur = p_enable; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_ssao(environment, ssao_enabled, ssao_radius, ssao_intensity, ssao_radius2, ssao_intensity2, ssao_bias, ssao_direct_light_affect, ssao_color, ssao_blur); | 
					
						
							| 
									
										
										
										
											2016-12-04 12:45:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | bool Environment::is_ssao_blur_enabled() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ssao_blur; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-11-29 19:55:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 	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_treshold, glow_hdr_bleed_treshold, glow_bicubic_upscale); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	ERR_FAIL_INDEX(p_level, VS::MAX_GLOW_LEVELS); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (p_enabled) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		glow_levels |= (1 << p_level); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		glow_levels &= ~(1 << p_level); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01: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_treshold, glow_hdr_bleed_treshold, glow_bicubic_upscale); | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	glow_intensity = p_intensity; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01: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_treshold, glow_hdr_bleed_treshold, glow_bicubic_upscale); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	glow_strength = p_strength; | 
					
						
							|  |  |  | 	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_treshold, glow_hdr_bleed_treshold, glow_bicubic_upscale); | 
					
						
							| 
									
										
										
										
											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-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_glow_bloom(float p_treshold) { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	glow_bloom = p_treshold; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01: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_treshold, glow_hdr_bleed_treshold, glow_bicubic_upscale); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	glow_blend_mode = p_mode; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01: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_treshold, glow_hdr_bleed_treshold, glow_bicubic_upscale); | 
					
						
							| 
									
										
										
										
											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-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_glow_hdr_bleed_treshold(float p_treshold) { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	glow_hdr_bleed_treshold = p_treshold; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01: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_treshold, glow_hdr_bleed_treshold, glow_bicubic_upscale); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | float Environment::get_glow_hdr_bleed_treshold() const { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return glow_hdr_bleed_treshold; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void Environment::set_glow_hdr_bleed_scale(float p_scale) { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	glow_hdr_bleed_scale = p_scale; | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01: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_treshold, glow_hdr_bleed_treshold, glow_bicubic_upscale); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	glow_bicubic_upscale = 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_treshold, glow_hdr_bleed_treshold, glow_bicubic_upscale); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool Environment::is_glow_bicubic_upscale_enabled() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return glow_bicubic_upscale; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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) { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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) { | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	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; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 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; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | float Environment::get_fog_depth_begin() const { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return fog_depth_begin; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void Environment::set_fog_depth_curve(float p_curve) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fog_depth_curve = p_curve; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 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; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 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; | 
					
						
							|  |  |  | 	VS::get_singleton()->environment_set_fog_depth(environment, fog_depth_enabled, fog_depth_begin, fog_depth_curve, fog_transmit_enabled, fog_transmit_curve); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 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-07-04 23:52:23 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_sky", "sky:Sky"), &Environment::set_sky); | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_sky_scale", "scale"), &Environment::set_sky_scale); | 
					
						
							| 
									
										
										
										
											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-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_background"), &Environment::get_background); | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("get_sky:CubeMap"), &Environment::get_sky); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_sky_scale"), &Environment::get_sky_scale); | 
					
						
							| 
									
										
										
										
											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-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ADD_GROUP("Background", "background_"); | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "background_mode", PROPERTY_HINT_ENUM, "Clear Color,Custom Color,Sky,Canvas,Keep"), "set_background", "get_background"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "background_sky", PROPERTY_HINT_RESOURCE_TYPE, "Sky"), "set_sky", "get_sky"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "background_sky_scale", PROPERTY_HINT_RANGE, "0,32,0.01"), "set_sky_scale", "get_sky_scale"); | 
					
						
							| 
									
										
										
										
											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"); | 
					
						
							|  |  |  | 	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); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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"); | 
					
						
							|  |  |  | 	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"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_height_min", PROPERTY_HINT_RANGE, "-4000,4000,0.1"), "set_fog_height_min", "get_fog_height_min"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "fog_height_max", PROPERTY_HINT_RANGE, "-4000,4000,0.1"), "set_fog_height_max", "get_fog_height_max"); | 
					
						
							|  |  |  | 	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_"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::INT, "tonemap_mode", PROPERTY_HINT_ENUM, "Linear,Reindhart,Filmic,Aces"), "set_tonemapper", "get_tonemapper"); | 
					
						
							|  |  |  | 	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); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("set_ssao_blur", "enabled"), &Environment::set_ssao_blur); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("is_ssao_blur_enabled"), &Environment::is_ssao_blur_enabled); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ADD_GROUP("SSAO", "ssao_"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "ssao_enabled"), "set_ssao_enabled", "is_ssao_enabled"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_radius", PROPERTY_HINT_RANGE, "0.1,16,0.1"), "set_ssao_radius", "get_ssao_radius"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_intensity", PROPERTY_HINT_RANGE, "0.0,9,0.1"), "set_ssao_intensity", "get_ssao_intensity"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_radius2", PROPERTY_HINT_RANGE, "0.0,16,0.1"), "set_ssao_radius2", "get_ssao_radius2"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "ssao_intensity2", PROPERTY_HINT_RANGE, "0.0,9,0.1"), "set_ssao_intensity2", "get_ssao_intensity2"); | 
					
						
							|  |  |  | 	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"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::COLOR, "ssao_color", PROPERTY_HINT_COLOR_NO_ALPHA), "set_ssao_color", "get_ssao_color"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::BOOL, "ssao_blur"), "set_ssao_blur", "is_ssao_blur_enabled"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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-03-05 16:44:50 +01:00
										 |  |  | 	ClassDB::bind_method(D_METHOD("set_glow_hdr_bleed_treshold", "treshold"), &Environment::set_glow_hdr_bleed_treshold); | 
					
						
							|  |  |  | 	ClassDB::bind_method(D_METHOD("get_glow_hdr_bleed_treshold"), &Environment::get_glow_hdr_bleed_treshold); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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"); | 
					
						
							|  |  |  | 	ADD_PROPERTY(PropertyInfo(Variant::REAL, "glow_hdr_treshold", PROPERTY_HINT_RANGE, "0.0,4.0,0.01"), "set_glow_hdr_bleed_treshold", "get_glow_hdr_bleed_treshold"); | 
					
						
							|  |  |  | 	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"); | 
					
						
							| 
									
										
										
										
											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-03-05 16:44:50 +01: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-05-25 13:53:59 -03:00
										 |  |  | 	GLOBAL_DEF("rendering/sky/irradiance_cube_resolution", 256); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BIND_CONSTANT(BG_KEEP); | 
					
						
							|  |  |  | 	BIND_CONSTANT(BG_CLEAR_COLOR); | 
					
						
							|  |  |  | 	BIND_CONSTANT(BG_COLOR); | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	BIND_CONSTANT(BG_SKY); | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | 	BIND_CONSTANT(BG_CANVAS); | 
					
						
							|  |  |  | 	BIND_CONSTANT(BG_MAX); | 
					
						
							|  |  |  | 	BIND_CONSTANT(GLOW_BLEND_MODE_ADDITIVE); | 
					
						
							|  |  |  | 	BIND_CONSTANT(GLOW_BLEND_MODE_SCREEN); | 
					
						
							|  |  |  | 	BIND_CONSTANT(GLOW_BLEND_MODE_SOFTLIGHT); | 
					
						
							| 
									
										
										
										
											2016-12-08 09:48:38 -03:00
										 |  |  | 	BIND_CONSTANT(GLOW_BLEND_MODE_REPLACE); | 
					
						
							| 
									
										
										
										
											2016-10-29 20:48:09 -03:00
										 |  |  | 	BIND_CONSTANT(TONE_MAPPER_LINEAR); | 
					
						
							|  |  |  | 	BIND_CONSTANT(TONE_MAPPER_REINHARDT); | 
					
						
							|  |  |  | 	BIND_CONSTANT(TONE_MAPPER_FILMIC); | 
					
						
							| 
									
										
										
										
											2016-12-07 17:49:52 -03:00
										 |  |  | 	BIND_CONSTANT(TONE_MAPPER_ACES); | 
					
						
							| 
									
										
										
										
											2016-12-10 01:13:20 -03:00
										 |  |  | 	BIND_CONSTANT(DOF_BLUR_QUALITY_LOW); | 
					
						
							|  |  |  | 	BIND_CONSTANT(DOF_BLUR_QUALITY_MEDIUM); | 
					
						
							|  |  |  | 	BIND_CONSTANT(DOF_BLUR_QUALITY_HIGH); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Environment::Environment() { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bg_mode = BG_CLEAR_COLOR; | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	bg_sky_scale = 1.0; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bg_energy = 1.0; | 
					
						
							|  |  |  | 	bg_canvas_max_layer = 0; | 
					
						
							|  |  |  | 	ambient_energy = 1.0; | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	ambient_sky_contribution = 0; | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	environment = VS::get_singleton()->environment_create(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 	ssao_direct_light_affect = false; | 
					
						
							|  |  |  | 	ssao_blur = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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; | 
					
						
							|  |  |  | 	glow_hdr_bleed_treshold = 1.0; | 
					
						
							|  |  |  | 	glow_hdr_bleed_scale = 2.0; | 
					
						
							|  |  |  | 	glow_bicubic_upscale = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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; | 
					
						
							|  |  |  | 	fog_depth_curve = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fog_transmit_enabled = false; | 
					
						
							|  |  |  | 	fog_transmit_curve = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	fog_height_enabled = false; | 
					
						
							|  |  |  | 	fog_height_min = 0; | 
					
						
							|  |  |  | 	fog_height_max = 100; | 
					
						
							|  |  |  | 	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); | 
					
						
							|  |  |  | } |