2014-02-10 01:10:30 +00: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-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "scene_string_names.h"
|
|
|
|
|
2020-04-01 23:20:12 +00:00
|
|
|
SceneStringNames *SceneStringNames::singleton = nullptr;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
SceneStringNames::SceneStringNames() {
|
|
|
|
resized = StaticCString::create("resized");
|
|
|
|
draw = StaticCString::create("draw");
|
2020-12-08 10:02:17 +00:00
|
|
|
hidden = StaticCString::create("hidden");
|
2014-02-10 01:10:30 +00:00
|
|
|
visibility_changed = StaticCString::create("visibility_changed");
|
|
|
|
input_event = StaticCString::create("input_event");
|
2017-06-28 20:00:18 +00:00
|
|
|
shader = StaticCString::create("shader");
|
2017-01-12 03:51:08 +00:00
|
|
|
tree_entered = StaticCString::create("tree_entered");
|
2018-01-12 11:28:39 +00:00
|
|
|
tree_exiting = StaticCString::create("tree_exiting");
|
2017-01-12 03:51:08 +00:00
|
|
|
tree_exited = StaticCString::create("tree_exited");
|
2018-01-20 21:57:59 +00:00
|
|
|
ready = StaticCString::create("ready");
|
2014-02-10 01:10:30 +00: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 14:14:38 +00:00
|
|
|
sleeping_state_changed = StaticCString::create("sleeping_state_changed");
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
finished = StaticCString::create("finished");
|
2017-01-08 20:35:11 +00:00
|
|
|
animation_finished = StaticCString::create("animation_finished");
|
2014-02-10 01:10:30 +00:00
|
|
|
animation_changed = StaticCString::create("animation_changed");
|
2016-04-14 15:19:20 +00:00
|
|
|
animation_started = StaticCString::create("animation_started");
|
2021-12-06 00:46:03 +00:00
|
|
|
RESET = StaticCString::create("RESET");
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2020-02-19 19:48:20 +00:00
|
|
|
pose_updated = StaticCString::create("pose_updated");
|
2024-04-12 11:39:39 +00:00
|
|
|
skeleton_updated = StaticCString::create("skeleton_updated");
|
2021-02-04 08:20:26 +00:00
|
|
|
bone_enabled_changed = StaticCString::create("bone_enabled_changed");
|
|
|
|
show_rest_only_changed = StaticCString::create("show_rest_only_changed");
|
2020-02-19 19:48:20 +00:00
|
|
|
|
2017-01-12 03:51:08 +00:00
|
|
|
mouse_entered = StaticCString::create("mouse_entered");
|
|
|
|
mouse_exited = StaticCString::create("mouse_exited");
|
2021-03-26 17:39:05 +00:00
|
|
|
mouse_shape_entered = StaticCString::create("mouse_shape_entered");
|
|
|
|
mouse_shape_exited = StaticCString::create("mouse_shape_exited");
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2017-01-12 03:51:08 +00:00
|
|
|
focus_entered = StaticCString::create("focus_entered");
|
|
|
|
focus_exited = StaticCString::create("focus_exited");
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2021-10-05 20:09:01 +00:00
|
|
|
pre_sort_children = StaticCString::create("pre_sort_children");
|
2014-02-10 01:10:30 +00:00
|
|
|
sort_children = StaticCString::create("sort_children");
|
|
|
|
|
2017-01-12 03:51:08 +00: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 01:10:30 +00:00
|
|
|
|
2017-01-12 03:51:08 +00:00
|
|
|
area_shape_entered = StaticCString::create("area_shape_entered");
|
|
|
|
area_shape_exited = StaticCString::create("area_shape_exited");
|
2015-03-17 03:45:25 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
update = StaticCString::create("update");
|
2015-01-08 03:41:34 +00:00
|
|
|
updated = StaticCString::create("updated");
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
_ready = StaticCString::create("_ready");
|
|
|
|
|
2017-01-12 03:51:08 +00:00
|
|
|
screen_entered = StaticCString::create("screen_entered");
|
|
|
|
screen_exited = StaticCString::create("screen_exited");
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-08 19:28:12 +00:00
|
|
|
gui_input = StaticCString::create("gui_input");
|
2014-02-10 01:10:30 +00: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 14:49:27 +00:00
|
|
|
rotate = StaticCString::create("rotate");
|
2014-02-10 01:10:30 +00:00
|
|
|
h_offset = StaticCString::create("h_offset");
|
|
|
|
v_offset = StaticCString::create("v_offset");
|
|
|
|
|
2017-01-12 03:51:08 +00:00
|
|
|
area_entered = StaticCString::create("area_entered");
|
|
|
|
area_exited = StaticCString::create("area_exited");
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
line_separation = StaticCString::create("line_separation");
|
|
|
|
|
2014-12-07 05:04:20 +00:00
|
|
|
frame_changed = StaticCString::create("frame_changed");
|
2021-06-12 04:44:38 +00:00
|
|
|
texture_changed = StaticCString::create("texture_changed");
|
2014-12-07 05:04:20 +00:00
|
|
|
|
2015-06-29 03:29:49 +00:00
|
|
|
autoplay = StaticCString::create("autoplay");
|
|
|
|
blend_times = StaticCString::create("blend_times");
|
|
|
|
speed = StaticCString::create("speed");
|
|
|
|
|
2016-05-17 21:27:15 +00:00
|
|
|
node_configuration_warning_changed = StaticCString::create("node_configuration_warning_changed");
|
|
|
|
|
2018-06-19 01:10:48 +00:00
|
|
|
output = StaticCString::create("output");
|
|
|
|
|
2015-06-29 03:29:49 +00:00
|
|
|
path_pp = NodePath("..");
|
2016-05-15 02:48:23 +00:00
|
|
|
|
2023-08-07 15:33:07 +00:00
|
|
|
// Audio bus name.
|
|
|
|
Master = StaticCString::create("Master");
|
|
|
|
|
2023-09-04 15:01:33 +00:00
|
|
|
default_ = StaticCString::create("default");
|
2016-05-27 17:18:40 +00:00
|
|
|
|
2020-03-06 17:00:16 +00:00
|
|
|
window_input = StaticCString::create("window_input");
|
2020-03-04 16:36:09 +00:00
|
|
|
|
2020-03-06 17:00:16 +00:00
|
|
|
theme_changed = StaticCString::create("theme_changed");
|
2018-08-20 16:38:18 +00:00
|
|
|
parameters_base_path = "parameters/";
|
2019-02-14 13:19:03 +00:00
|
|
|
|
2020-04-17 02:52:00 +00:00
|
|
|
shader_overrides_group = StaticCString::create("_shader_overrides_group_");
|
|
|
|
shader_overrides_group_active = StaticCString::create("_shader_overrides_group_active_");
|
2020-05-01 12:34:23 +00:00
|
|
|
|
2024-05-14 07:40:21 +00:00
|
|
|
pressed = StaticCString::create("pressed");
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|