| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  scene_string_names.cpp                                               */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-01-01 20:13:46 +01:00
										 |  |  | /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the       */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including   */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,   */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to    */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to */ | 
					
						
							|  |  |  | /* the following conditions:                                             */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be        */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.       */ | 
					
						
							|  |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,       */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF    */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY  */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,  */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE     */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #include "scene_string_names.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-02 01:20:12 +02:00
										 |  |  | SceneStringNames *SceneStringNames::singleton = nullptr; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | SceneStringNames::SceneStringNames() { | 
					
						
							| 
									
										
										
										
											2017-03-25 20:14:41 +10:30
										 |  |  | 	_estimate_cost = StaticCString::create("_estimate_cost"); | 
					
						
							|  |  |  | 	_compute_cost = StaticCString::create("_compute_cost"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	resized = StaticCString::create("resized"); | 
					
						
							|  |  |  | 	dot = StaticCString::create("."); | 
					
						
							|  |  |  | 	doubledot = StaticCString::create(".."); | 
					
						
							|  |  |  | 	draw = StaticCString::create("draw"); | 
					
						
							|  |  |  | 	_draw = StaticCString::create("_draw"); | 
					
						
							| 
									
										
										
										
											2020-12-08 10:02:17 +00:00
										 |  |  | 	hidden = StaticCString::create("hidden"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	visibility_changed = StaticCString::create("visibility_changed"); | 
					
						
							|  |  |  | 	input_event = StaticCString::create("input_event"); | 
					
						
							| 
									
										
										
										
											2017-06-28 17:00:18 -03:00
										 |  |  | 	shader = StaticCString::create("shader"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	shader_unshaded = StaticCString::create("shader/unshaded"); | 
					
						
							|  |  |  | 	shading_mode = StaticCString::create("shader/shading_mode"); | 
					
						
							|  |  |  | 	tree_entered = StaticCString::create("tree_entered"); | 
					
						
							| 
									
										
										
										
											2018-01-12 08:28:39 -03:00
										 |  |  | 	tree_exiting = StaticCString::create("tree_exiting"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	tree_exited = StaticCString::create("tree_exited"); | 
					
						
							| 
									
										
										
										
											2018-01-20 21:57:59 +00:00
										 |  |  | 	ready = StaticCString::create("ready"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	item_rect_changed = StaticCString::create("item_rect_changed"); | 
					
						
							|  |  |  | 	size_flags_changed = StaticCString::create("size_flags_changed"); | 
					
						
							|  |  |  | 	minimum_size_changed = StaticCString::create("minimum_size_changed"); | 
					
						
							|  |  |  | 	sleeping_state_changed = StaticCString::create("sleeping_state_changed"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	finished = StaticCString::create("finished"); | 
					
						
							|  |  |  | 	emission_finished = StaticCString::create("emission_finished"); | 
					
						
							|  |  |  | 	animation_finished = StaticCString::create("animation_finished"); | 
					
						
							|  |  |  | 	animation_changed = StaticCString::create("animation_changed"); | 
					
						
							|  |  |  | 	animation_started = StaticCString::create("animation_started"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-19 11:48:20 -08:00
										 |  |  | 	pose_updated = StaticCString::create("pose_updated"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	mouse_entered = StaticCString::create("mouse_entered"); | 
					
						
							|  |  |  | 	mouse_exited = StaticCString::create("mouse_exited"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	focus_entered = StaticCString::create("focus_entered"); | 
					
						
							|  |  |  | 	focus_exited = StaticCString::create("focus_exited"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	sort_children = StaticCString::create("sort_children"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-12 00:51:08 -03:00
										 |  |  | 	body_shape_entered = StaticCString::create("body_shape_entered"); | 
					
						
							|  |  |  | 	body_entered = StaticCString::create("body_entered"); | 
					
						
							|  |  |  | 	body_shape_exited = StaticCString::create("body_shape_exited"); | 
					
						
							|  |  |  | 	body_exited = StaticCString::create("body_exited"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-12 00:51:08 -03:00
										 |  |  | 	area_shape_entered = StaticCString::create("area_shape_entered"); | 
					
						
							|  |  |  | 	area_shape_exited = StaticCString::create("area_shape_exited"); | 
					
						
							| 
									
										
										
										
											2015-03-17 00:45:25 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-29 00:29:49 -03:00
										 |  |  | 	_body_inout = StaticCString::create("_body_inout"); | 
					
						
							|  |  |  | 	_area_inout = StaticCString::create("_area_inout"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	idle = StaticCString::create("idle"); | 
					
						
							|  |  |  | 	iteration = StaticCString::create("iteration"); | 
					
						
							|  |  |  | 	update = StaticCString::create("update"); | 
					
						
							|  |  |  | 	updated = StaticCString::create("updated"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_get_gizmo_geometry = StaticCString::create("_get_gizmo_geometry"); | 
					
						
							|  |  |  | 	_can_gizmo_scale = StaticCString::create("_can_gizmo_scale"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-30 16:19:07 +02:00
										 |  |  | 	_physics_process = StaticCString::create("_physics_process"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_process = StaticCString::create("_process"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_enter_tree = StaticCString::create("_enter_tree"); | 
					
						
							|  |  |  | 	_exit_tree = StaticCString::create("_exit_tree"); | 
					
						
							|  |  |  | 	_enter_world = StaticCString::create("_enter_world"); | 
					
						
							|  |  |  | 	_exit_world = StaticCString::create("_exit_world"); | 
					
						
							|  |  |  | 	_ready = StaticCString::create("_ready"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_update_scroll = StaticCString::create("_update_scroll"); | 
					
						
							|  |  |  | 	_update_xform = StaticCString::create("_update_xform"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-29 12:46:53 -03:00
										 |  |  | 	_clips_input = StaticCString::create("_clips_input"); | 
					
						
							| 
									
										
										
										
											2020-09-03 14:22:16 +03:00
										 |  |  | 	_structured_text_parser = StaticCString::create("_structured_text_parser"); | 
					
						
							| 
									
										
										
										
											2018-07-29 12:46:53 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_proxgroup_add = StaticCString::create("_proxgroup_add"); | 
					
						
							|  |  |  | 	_proxgroup_remove = StaticCString::create("_proxgroup_remove"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	grouped = StaticCString::create("grouped"); | 
					
						
							|  |  |  | 	ungrouped = StaticCString::create("ungrouped"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	screen_entered = StaticCString::create("screen_entered"); | 
					
						
							|  |  |  | 	screen_exited = StaticCString::create("screen_exited"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	viewport_entered = StaticCString::create("viewport_entered"); | 
					
						
							|  |  |  | 	viewport_exited = StaticCString::create("viewport_exited"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	camera_entered = StaticCString::create("camera_entered"); | 
					
						
							|  |  |  | 	camera_exited = StaticCString::create("camera_exited"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-25 21:09:15 +01:00
										 |  |  | 	_input = StaticCString::create("_input"); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_input_event = StaticCString::create("_input_event"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	gui_input = StaticCString::create("gui_input"); | 
					
						
							|  |  |  | 	_gui_input = StaticCString::create("_gui_input"); | 
					
						
							| 
									
										
										
										
											2017-01-08 16:28:12 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_unhandled_input = StaticCString::create("_unhandled_input"); | 
					
						
							|  |  |  | 	_unhandled_key_input = StaticCString::create("_unhandled_key_input"); | 
					
						
							| 
									
										
										
										
											2017-01-10 18:02:19 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	changed = StaticCString::create("changed"); | 
					
						
							|  |  |  | 	_shader_changed = StaticCString::create("_shader_changed"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_spatial_editor_group = StaticCString::create("_spatial_editor_group"); | 
					
						
							|  |  |  | 	_request_gizmo = StaticCString::create("_request_gizmo"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	offset = StaticCString::create("offset"); | 
					
						
							|  |  |  | 	unit_offset = StaticCString::create("unit_offset"); | 
					
						
							|  |  |  | 	rotation_mode = StaticCString::create("rotation_mode"); | 
					
						
							|  |  |  | 	rotate = StaticCString::create("rotate"); | 
					
						
							|  |  |  | 	h_offset = StaticCString::create("h_offset"); | 
					
						
							|  |  |  | 	v_offset = StaticCString::create("v_offset"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-06 22:51:56 -03:00
										 |  |  | 	transform_pos = StaticCString::create("position"); | 
					
						
							| 
									
										
										
										
											2017-11-10 11:07:52 +01:00
										 |  |  | 	transform_rot = StaticCString::create("rotation_degrees"); | 
					
						
							| 
									
										
										
										
											2017-08-06 22:51:56 -03:00
										 |  |  | 	transform_scale = StaticCString::create("scale"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_update_remote = StaticCString::create("_update_remote"); | 
					
						
							|  |  |  | 	_update_pairs = StaticCString::create("_update_pairs"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-13 16:45:27 +01:00
										 |  |  | 	_get_minimum_size = StaticCString::create("_get_minimum_size"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	area_entered = StaticCString::create("area_entered"); | 
					
						
							|  |  |  | 	area_exited = StaticCString::create("area_exited"); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	has_point = StaticCString::create("has_point"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	line_separation = StaticCString::create("line_separation"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	get_drag_data = StaticCString::create("get_drag_data"); | 
					
						
							|  |  |  | 	drop_data = StaticCString::create("drop_data"); | 
					
						
							|  |  |  | 	can_drop_data = StaticCString::create("can_drop_data"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-21 23:26:13 +01:00
										 |  |  | 	_im_update = StaticCString::create("_im_update"); // Sprite3D
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-11 10:41:03 -03:00
										 |  |  | 	baked_light_changed = StaticCString::create("baked_light_changed"); | 
					
						
							|  |  |  | 	_baked_light_changed = StaticCString::create("_baked_light_changed"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_mouse_enter = StaticCString::create("_mouse_enter"); | 
					
						
							|  |  |  | 	_mouse_exit = StaticCString::create("_mouse_exit"); | 
					
						
							| 
									
										
										
										
											2014-06-11 10:41:03 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_pressed = StaticCString::create("_pressed"); | 
					
						
							|  |  |  | 	_toggled = StaticCString::create("_toggled"); | 
					
						
							| 
									
										
										
										
											2014-12-02 17:26:56 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	frame_changed = StaticCString::create("frame_changed"); | 
					
						
							| 
									
										
										
										
											2014-12-07 02:04:20 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	playback_speed = StaticCString::create("playback/speed"); | 
					
						
							|  |  |  | 	playback_active = StaticCString::create("playback/active"); | 
					
						
							|  |  |  | 	autoplay = StaticCString::create("autoplay"); | 
					
						
							|  |  |  | 	blend_times = StaticCString::create("blend_times"); | 
					
						
							|  |  |  | 	speed = StaticCString::create("speed"); | 
					
						
							| 
									
										
										
										
											2015-06-29 00:29:49 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-17 18:27:15 -03:00
										 |  |  | 	node_configuration_warning_changed = StaticCString::create("node_configuration_warning_changed"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-18 22:10:48 -03:00
										 |  |  | 	output = StaticCString::create("output"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	path_pp = NodePath(".."); | 
					
						
							| 
									
										
										
										
											2016-05-14 23:48:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	_default = StaticCString::create("default"); | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 13:36:09 -03:00
										 |  |  | 	_window_group = StaticCString::create("_window_group"); | 
					
						
							|  |  |  | 	_window_input = StaticCString::create("_window_input"); | 
					
						
							| 
									
										
										
										
											2020-03-06 14:00:16 -03:00
										 |  |  | 	window_input = StaticCString::create("window_input"); | 
					
						
							| 
									
										
										
										
											2020-03-04 13:36:09 -03:00
										 |  |  | 	_window_unhandled_input = StaticCString::create("_window_unhandled_input"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-06 14:00:16 -03:00
										 |  |  | 	theme_changed = StaticCString::create("theme_changed"); | 
					
						
							| 
									
										
										
										
											2018-08-20 13:38:18 -03:00
										 |  |  | 	parameters_base_path = "parameters/"; | 
					
						
							| 
									
										
										
										
											2019-02-14 10:19:03 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	tracks_changed = "tracks_changed"; | 
					
						
							| 
									
										
										
										
											2020-04-16 23:52:00 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	shader_overrides_group = StaticCString::create("_shader_overrides_group_"); | 
					
						
							|  |  |  | 	shader_overrides_group_active = StaticCString::create("_shader_overrides_group_active_"); | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef DISABLE_DEPRECATED
 | 
					
						
							|  |  |  | 	use_in_baked_light = StaticCString::create("use_in_baked_light"); | 
					
						
							|  |  |  | 	use_dynamic_gi = StaticCString::create("use_dynamic_gi"); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | } |