| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  area_sw.cpp                                                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-01-01 11:16:22 +01:00
										 |  |  | /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "area_sw.h"
 | 
					
						
							|  |  |  | #include "body_sw.h"
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #include "space_sw.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | AreaSW::BodyKey::BodyKey(BodySW *p_body, uint32_t p_body_shape, uint32_t p_area_shape) { | 
					
						
							|  |  |  | 	rid = p_body->get_self(); | 
					
						
							|  |  |  | 	instance_id = p_body->get_instance_id(); | 
					
						
							|  |  |  | 	body_shape = p_body_shape; | 
					
						
							|  |  |  | 	area_shape = p_area_shape; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | AreaSW::BodyKey::BodyKey(AreaSW *p_body, uint32_t p_body_shape, uint32_t p_area_shape) { | 
					
						
							|  |  |  | 	rid = p_body->get_self(); | 
					
						
							|  |  |  | 	instance_id = p_body->get_instance_id(); | 
					
						
							|  |  |  | 	body_shape = p_body_shape; | 
					
						
							|  |  |  | 	area_shape = p_area_shape; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | void AreaSW::_shapes_changed() { | 
					
						
							| 
									
										
										
										
											2019-11-14 15:48:41 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!moved_list.in_list() && get_space()) | 
					
						
							|  |  |  | 		get_space()->area_add_to_moved_list(&moved_list); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void AreaSW::set_transform(const Transform &p_transform) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!moved_list.in_list() && get_space()) | 
					
						
							|  |  |  | 		get_space()->area_add_to_moved_list(&moved_list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_set_transform(p_transform); | 
					
						
							| 
									
										
										
										
											2014-09-15 11:33:30 -03:00
										 |  |  | 	_set_inv_transform(p_transform.affine_inverse()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AreaSW::set_space(SpaceSW *p_space) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (get_space()) { | 
					
						
							|  |  |  | 		if (monitor_query_list.in_list()) | 
					
						
							|  |  |  | 			get_space()->area_remove_from_monitor_query_list(&monitor_query_list); | 
					
						
							|  |  |  | 		if (moved_list.in_list()) | 
					
						
							|  |  |  | 			get_space()->area_remove_from_moved_list(&moved_list); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	monitored_bodies.clear(); | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 	monitored_areas.clear(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_set_space(p_space); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void AreaSW::set_monitor_callback(ObjectID p_id, const StringName &p_method) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_id == monitor_callback_id) { | 
					
						
							|  |  |  | 		monitor_callback_method = p_method; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_unregister_shapes(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	monitor_callback_id = p_id; | 
					
						
							|  |  |  | 	monitor_callback_method = p_method; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	monitored_bodies.clear(); | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 	monitored_areas.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_shape_changed(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 23:24:55 -03:00
										 |  |  | 	if (!moved_list.in_list() && get_space()) | 
					
						
							|  |  |  | 		get_space()->area_add_to_moved_list(&moved_list); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void AreaSW::set_area_monitor_callback(ObjectID p_id, const StringName &p_method) { | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (p_id == area_monitor_callback_id) { | 
					
						
							|  |  |  | 		area_monitor_callback_method = p_method; | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_unregister_shapes(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	area_monitor_callback_id = p_id; | 
					
						
							|  |  |  | 	area_monitor_callback_method = p_method; | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	monitored_bodies.clear(); | 
					
						
							|  |  |  | 	monitored_areas.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	_shape_changed(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 23:24:55 -03:00
										 |  |  | 	if (!moved_list.in_list() && get_space()) | 
					
						
							|  |  |  | 		get_space()->area_add_to_moved_list(&moved_list); | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | void AreaSW::set_space_override_mode(PhysicsServer::AreaSpaceOverrideMode p_mode) { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	bool do_override = p_mode != PhysicsServer::AREA_SPACE_OVERRIDE_DISABLED; | 
					
						
							|  |  |  | 	if (do_override == (space_override_mode != PhysicsServer::AREA_SPACE_OVERRIDE_DISABLED)) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	_unregister_shapes(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	space_override_mode = p_mode; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	_shape_changed(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | void AreaSW::set_param(PhysicsServer::AreaParameter p_param, const Variant &p_value) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (p_param) { | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_GRAVITY: gravity = p_value; break; | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_GRAVITY_VECTOR: gravity_vector = p_value; break; | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_GRAVITY_IS_POINT: gravity_is_point = p_value; break; | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_GRAVITY_DISTANCE_SCALE: gravity_distance_scale = p_value; break; | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_GRAVITY_POINT_ATTENUATION: point_attenuation = p_value; break; | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_LINEAR_DAMP: linear_damp = p_value; break; | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_ANGULAR_DAMP: angular_damp = p_value; break; | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_PRIORITY: priority = p_value; break; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Variant AreaSW::get_param(PhysicsServer::AreaParameter p_param) const { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	switch (p_param) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case PhysicsServer::AREA_PARAM_GRAVITY: return gravity; | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_GRAVITY_VECTOR: return gravity_vector; | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_GRAVITY_IS_POINT: return gravity_is_point; | 
					
						
							| 
									
										
										
										
											2015-03-19 14:10:07 +00:00
										 |  |  | 		case PhysicsServer::AREA_PARAM_GRAVITY_DISTANCE_SCALE: return gravity_distance_scale; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		case PhysicsServer::AREA_PARAM_GRAVITY_POINT_ATTENUATION: return point_attenuation; | 
					
						
							| 
									
										
										
										
											2015-08-30 18:57:17 -03:00
										 |  |  | 		case PhysicsServer::AREA_PARAM_LINEAR_DAMP: return linear_damp; | 
					
						
							|  |  |  | 		case PhysicsServer::AREA_PARAM_ANGULAR_DAMP: return angular_damp; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		case PhysicsServer::AREA_PARAM_PRIORITY: return priority; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return Variant(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void AreaSW::_queue_monitor_update() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ERR_FAIL_COND(!get_space()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!monitor_query_list.in_list()) | 
					
						
							|  |  |  | 		get_space()->area_add_to_monitor_query_list(&monitor_query_list); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | void AreaSW::set_monitorable(bool p_monitorable) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	if (monitorable == p_monitorable) | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	monitorable = p_monitorable; | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 	_set_static(!monitorable); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | void AreaSW::call_queries() { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (monitor_callback_id && !monitored_bodies.empty()) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Variant res[5]; | 
					
						
							|  |  |  | 		Variant *resptr[5]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < 5; i++) | 
					
						
							|  |  |  | 			resptr[i] = &res[i]; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Object *obj = ObjectDB::get_instance(monitor_callback_id); | 
					
						
							|  |  |  | 		if (!obj) { | 
					
						
							|  |  |  | 			monitored_bodies.clear(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			monitor_callback_id = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (Map<BodyKey, BodyState>::Element *E = monitored_bodies.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (E->get().state == 0) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 				continue; //nothing happened
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			res[0] = E->get().state > 0 ? PhysicsServer::AREA_BODY_ADDED : PhysicsServer::AREA_BODY_REMOVED; | 
					
						
							|  |  |  | 			res[1] = E->key().rid; | 
					
						
							|  |  |  | 			res[2] = E->key().instance_id; | 
					
						
							|  |  |  | 			res[3] = E->key().body_shape; | 
					
						
							|  |  |  | 			res[4] = E->key().area_shape; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			Variant::CallError ce; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			obj->call(monitor_callback_method, (const Variant **)resptr, 5, ce); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	monitored_bodies.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 	if (area_monitor_callback_id && !monitored_areas.empty()) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Variant res[5]; | 
					
						
							|  |  |  | 		Variant *resptr[5]; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (int i = 0; i < 5; i++) | 
					
						
							|  |  |  | 			resptr[i] = &res[i]; | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		Object *obj = ObjectDB::get_instance(area_monitor_callback_id); | 
					
						
							|  |  |  | 		if (!obj) { | 
					
						
							|  |  |  | 			monitored_areas.clear(); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			area_monitor_callback_id = 0; | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		for (Map<BodyKey, BodyState>::Element *E = monitored_areas.front(); E; E = E->next()) { | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			if (E->get().state == 0) | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 				continue; //nothing happened
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			res[0] = E->get().state > 0 ? PhysicsServer::AREA_BODY_ADDED : PhysicsServer::AREA_BODY_REMOVED; | 
					
						
							|  |  |  | 			res[1] = E->key().rid; | 
					
						
							|  |  |  | 			res[2] = E->key().instance_id; | 
					
						
							|  |  |  | 			res[3] = E->key().body_shape; | 
					
						
							|  |  |  | 			res[4] = E->key().area_shape; | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			Variant::CallError ce; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 			obj->call(area_monitor_callback_method, (const Variant **)resptr, 5, ce); | 
					
						
							| 
									
										
										
										
											2015-06-12 15:52:21 -03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	monitored_areas.clear(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	//get_space()->area_remove_from_monitor_query_list(&monitor_query_list);
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-06 21:36:34 +01:00
										 |  |  | AreaSW::AreaSW() : | 
					
						
							|  |  |  | 		CollisionObjectSW(TYPE_AREA), | 
					
						
							|  |  |  | 		monitor_query_list(this), | 
					
						
							|  |  |  | 		moved_list(this) { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	_set_static(true); //areas are never active
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	space_override_mode = PhysicsServer::AREA_SPACE_OVERRIDE_DISABLED; | 
					
						
							|  |  |  | 	gravity = 9.80665; | 
					
						
							|  |  |  | 	gravity_vector = Vector3(0, -1, 0); | 
					
						
							|  |  |  | 	gravity_is_point = false; | 
					
						
							|  |  |  | 	gravity_distance_scale = 0; | 
					
						
							|  |  |  | 	point_attenuation = 1; | 
					
						
							| 
									
										
										
										
											2019-03-22 02:33:17 +01:00
										 |  |  | 	angular_damp = 0.1; | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	linear_damp = 0.1; | 
					
						
							|  |  |  | 	priority = 0; | 
					
						
							| 
									
										
										
										
											2014-10-03 00:10:51 -03:00
										 |  |  | 	set_ray_pickable(false); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	monitor_callback_id = 0; | 
					
						
							|  |  |  | 	area_monitor_callback_id = 0; | 
					
						
							|  |  |  | 	monitorable = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | AreaSW::~AreaSW() { | 
					
						
							|  |  |  | } |