2014-02-10 02:10:30 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* scene_string_names.cpp */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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-10 02:10:30 +01:00
|
|
|
#include "scene_string_names.h"
|
|
|
|
|
2020-04-02 01:20:12 +02:00
|
|
|
SceneStringNames *SceneStringNames::singleton = nullptr;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
SceneStringNames::SceneStringNames() {
|
|
|
|
resized = StaticCString::create("resized");
|
|
|
|
draw = StaticCString::create("draw");
|
2020-12-08 11:02:17 +01:00
|
|
|
hidden = StaticCString::create("hidden");
|
2014-02-10 02:10:30 +01:00
|
|
|
visibility_changed = StaticCString::create("visibility_changed");
|
|
|
|
input_event = StaticCString::create("input_event");
|
2017-06-28 22:00:18 +02:00
|
|
|
shader = StaticCString::create("shader");
|
2017-01-12 04:51:08 +01:00
|
|
|
tree_entered = StaticCString::create("tree_entered");
|
2018-01-12 12:28:39 +01:00
|
|
|
tree_exiting = StaticCString::create("tree_exiting");
|
2017-01-12 04:51:08 +01:00
|
|
|
tree_exited = StaticCString::create("tree_exited");
|
2018-01-20 22:57:59 +01:00
|
|
|
ready = StaticCString::create("ready");
|
2014-02-10 02:10:30 +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");
|
2016-04-06 16:14:38 +02:00
|
|
|
sleeping_state_changed = StaticCString::create("sleeping_state_changed");
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
finished = StaticCString::create("finished");
|
2017-01-08 21:35:11 +01:00
|
|
|
animation_finished = StaticCString::create("animation_finished");
|
2014-02-10 02:10:30 +01:00
|
|
|
animation_changed = StaticCString::create("animation_changed");
|
2016-04-14 17:19:20 +02:00
|
|
|
animation_started = StaticCString::create("animation_started");
|
2021-12-06 01:46:03 +01:00
|
|
|
RESET = StaticCString::create("RESET");
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2020-02-19 20:48:20 +01:00
|
|
|
pose_updated = StaticCString::create("pose_updated");
|
2024-04-12 13:39:39 +02:00
|
|
|
skeleton_updated = StaticCString::create("skeleton_updated");
|
2021-02-04 09:20:26 +01:00
|
|
|
bone_enabled_changed = StaticCString::create("bone_enabled_changed");
|
|
|
|
show_rest_only_changed = StaticCString::create("show_rest_only_changed");
|
2020-02-19 20:48:20 +01:00
|
|
|
|
2017-01-12 04:51:08 +01:00
|
|
|
mouse_entered = StaticCString::create("mouse_entered");
|
|
|
|
mouse_exited = StaticCString::create("mouse_exited");
|
2021-03-26 18:39:05 +01:00
|
|
|
mouse_shape_entered = StaticCString::create("mouse_shape_entered");
|
|
|
|
mouse_shape_exited = StaticCString::create("mouse_shape_exited");
|
2017-03-05 16:44:50 +01:00
|
|
|
|
2017-01-12 04:51:08 +01:00
|
|
|
focus_entered = StaticCString::create("focus_entered");
|
|
|
|
focus_exited = StaticCString::create("focus_exited");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-10-05 22:09:01 +02:00
|
|
|
pre_sort_children = StaticCString::create("pre_sort_children");
|
2014-02-10 02:10:30 +01:00
|
|
|
sort_children = StaticCString::create("sort_children");
|
|
|
|
|
2017-01-12 04:51:08 +01: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-10 02:10:30 +01:00
|
|
|
|
2017-01-12 04:51:08 +01:00
|
|
|
area_shape_entered = StaticCString::create("area_shape_entered");
|
|
|
|
area_shape_exited = StaticCString::create("area_shape_exited");
|
2015-03-17 04:45:25 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
update = StaticCString::create("update");
|
2015-01-08 04:41:34 +01:00
|
|
|
updated = StaticCString::create("updated");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
_ready = StaticCString::create("_ready");
|
|
|
|
|
2017-01-12 04:51:08 +01:00
|
|
|
screen_entered = StaticCString::create("screen_entered");
|
|
|
|
screen_exited = StaticCString::create("screen_exited");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-01-08 20:28:12 +01:00
|
|
|
gui_input = StaticCString::create("gui_input");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
_spatial_editor_group = StaticCString::create("_spatial_editor_group");
|
|
|
|
_request_gizmo = StaticCString::create("_request_gizmo");
|
|
|
|
|
|
|
|
offset = StaticCString::create("offset");
|
|
|
|
rotation_mode = StaticCString::create("rotation_mode");
|
2014-07-06 16:49:27 +02:00
|
|
|
rotate = StaticCString::create("rotate");
|
2014-02-10 02:10:30 +01:00
|
|
|
h_offset = StaticCString::create("h_offset");
|
|
|
|
v_offset = StaticCString::create("v_offset");
|
|
|
|
|
2017-01-12 04:51:08 +01:00
|
|
|
area_entered = StaticCString::create("area_entered");
|
|
|
|
area_exited = StaticCString::create("area_exited");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
line_separation = StaticCString::create("line_separation");
|
2024-05-14 15:57:29 +02:00
|
|
|
font = StaticCString::create("font");
|
|
|
|
font_size = StaticCString::create("font_size");
|
|
|
|
font_color = StaticCString::create("font_color");
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-12-07 06:04:20 +01:00
|
|
|
frame_changed = StaticCString::create("frame_changed");
|
2021-06-12 06:44:38 +02:00
|
|
|
texture_changed = StaticCString::create("texture_changed");
|
2014-12-07 06:04:20 +01:00
|
|
|
|
2015-06-29 05:29:49 +02:00
|
|
|
autoplay = StaticCString::create("autoplay");
|
|
|
|
blend_times = StaticCString::create("blend_times");
|
|
|
|
speed = StaticCString::create("speed");
|
|
|
|
|
2016-05-17 23:27:15 +02:00
|
|
|
node_configuration_warning_changed = StaticCString::create("node_configuration_warning_changed");
|
|
|
|
|
2018-06-19 03:10:48 +02:00
|
|
|
output = StaticCString::create("output");
|
|
|
|
|
2015-06-29 05:29:49 +02:00
|
|
|
path_pp = NodePath("..");
|
2016-05-15 04:48:23 +02:00
|
|
|
|
2023-08-07 17:33:07 +02:00
|
|
|
// Audio bus name.
|
|
|
|
Master = StaticCString::create("Master");
|
|
|
|
|
2023-09-04 17:01:33 +02:00
|
|
|
default_ = StaticCString::create("default");
|
2016-05-27 19:18:40 +02:00
|
|
|
|
2020-03-06 18:00:16 +01:00
|
|
|
window_input = StaticCString::create("window_input");
|
2020-03-04 17:36:09 +01:00
|
|
|
|
2020-03-06 18:00:16 +01:00
|
|
|
theme_changed = StaticCString::create("theme_changed");
|
2019-02-14 14:19:03 +01:00
|
|
|
|
2020-04-17 04:52:00 +02:00
|
|
|
shader_overrides_group = StaticCString::create("_shader_overrides_group_");
|
|
|
|
shader_overrides_group_active = StaticCString::create("_shader_overrides_group_active_");
|
2020-05-01 14:34:23 +02:00
|
|
|
|
2024-05-14 09:40:21 +02:00
|
|
|
pressed = StaticCString::create("pressed");
|
2024-05-14 14:13:31 +02:00
|
|
|
id_pressed = StaticCString::create("id_pressed");
|
2024-05-14 15:50:53 +02:00
|
|
|
|
|
|
|
panel = StaticCString::create("panel");
|
2024-05-14 14:21:31 +02:00
|
|
|
|
|
|
|
item_selected = StaticCString::create("item_selected");
|
2024-05-14 14:28:18 +02:00
|
|
|
|
|
|
|
confirmed = StaticCString::create("confirmed");
|
2024-05-14 11:42:00 +02:00
|
|
|
|
|
|
|
text_changed = StaticCString::create("text_changed");
|
|
|
|
value_changed = StaticCString::create("value_changed");
|
2014-02-10 02:10:30 +01:00
|
|
|
}
|