2014-02-09 22:10:30 -03:00
|
|
|
/*************************************************************************/
|
|
|
|
/* scene_string_names.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* 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
|
|
|
#ifndef SCENE_STRING_NAMES_H
|
|
|
|
#define SCENE_STRING_NAMES_H
|
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/node_path.h"
|
2019-02-12 13:30:56 +01:00
|
|
|
#include "core/string_name.h"
|
2014-02-09 22:10:30 -03:00
|
|
|
class SceneStringNames {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
friend void register_scene_types();
|
|
|
|
friend void unregister_scene_types();
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
static SceneStringNames *singleton;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
static void create() { singleton = memnew(SceneStringNames); }
|
2017-03-05 16:44:50 +01:00
|
|
|
static void free() {
|
|
|
|
memdelete(singleton);
|
|
|
|
singleton = NULL;
|
|
|
|
}
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
SceneStringNames();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
|
|
|
_FORCE_INLINE_ static SceneStringNames *get_singleton() { return singleton; }
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-03-25 20:14:41 +10:30
|
|
|
StringName _estimate_cost;
|
|
|
|
StringName _compute_cost;
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName resized;
|
|
|
|
StringName dot;
|
|
|
|
StringName doubledot;
|
|
|
|
StringName draw;
|
|
|
|
StringName hide;
|
|
|
|
StringName visibility_changed;
|
|
|
|
StringName input_event;
|
|
|
|
StringName _input_event;
|
2017-01-08 16:28:12 -03:00
|
|
|
StringName gui_input;
|
|
|
|
StringName _gui_input;
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName item_rect_changed;
|
2017-06-28 17:00:18 -03:00
|
|
|
StringName shader;
|
2015-03-02 00:54:10 -03:00
|
|
|
StringName shader_unshaded;
|
2015-04-03 01:43:37 -03:00
|
|
|
StringName shading_mode;
|
2017-01-12 00:51:08 -03:00
|
|
|
StringName tree_entered;
|
2018-01-12 08:28:39 -03:00
|
|
|
StringName tree_exiting;
|
2017-01-12 00:51:08 -03:00
|
|
|
StringName tree_exited;
|
2018-01-20 21:57:59 +00:00
|
|
|
StringName ready;
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName size_flags_changed;
|
|
|
|
StringName minimum_size_changed;
|
2016-04-06 17:14:38 +03:00
|
|
|
StringName sleeping_state_changed;
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName idle;
|
|
|
|
StringName iteration;
|
|
|
|
StringName update;
|
2015-01-08 00:41:34 -03:00
|
|
|
StringName updated;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
StringName line_separation;
|
|
|
|
|
2017-01-12 00:51:08 -03:00
|
|
|
StringName mouse_entered;
|
|
|
|
StringName mouse_exited;
|
|
|
|
StringName focus_entered;
|
|
|
|
StringName focus_exited;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
|
|
|
StringName sort_children;
|
|
|
|
|
|
|
|
StringName finished;
|
2017-02-25 16:06:00 +02:00
|
|
|
StringName emission_finished;
|
2017-01-08 17:35:11 -03:00
|
|
|
StringName animation_finished;
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName animation_changed;
|
2016-04-14 17:19:20 +02:00
|
|
|
StringName animation_started;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-01-12 00:51:08 -03:00
|
|
|
StringName body_shape_entered;
|
|
|
|
StringName body_entered;
|
|
|
|
StringName body_shape_exited;
|
|
|
|
StringName body_exited;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-01-12 00:51:08 -03:00
|
|
|
StringName area_shape_entered;
|
|
|
|
StringName area_shape_exited;
|
2015-03-17 00:45:25 -03:00
|
|
|
|
2015-06-29 00:29:49 -03:00
|
|
|
StringName _body_inout;
|
|
|
|
StringName _area_inout;
|
2015-03-17 00:45:25 -03:00
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName _get_gizmo_geometry;
|
|
|
|
StringName _can_gizmo_scale;
|
|
|
|
|
2017-09-30 16:19:07 +02:00
|
|
|
StringName _physics_process;
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName _process;
|
|
|
|
StringName _enter_world;
|
|
|
|
StringName _exit_world;
|
2014-11-05 21:20:42 -03:00
|
|
|
StringName _enter_tree;
|
|
|
|
StringName _exit_tree;
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName _draw;
|
|
|
|
StringName _input;
|
|
|
|
StringName _ready;
|
2017-01-10 18:02:19 -03:00
|
|
|
StringName _unhandled_input;
|
|
|
|
StringName _unhandled_key_input;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2014-12-02 17:26:56 -03:00
|
|
|
StringName _pressed;
|
|
|
|
StringName _toggled;
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName _update_scroll;
|
|
|
|
StringName _update_xform;
|
|
|
|
|
2018-07-29 12:46:53 -03:00
|
|
|
StringName _clips_input;
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName _proxgroup_add;
|
|
|
|
StringName _proxgroup_remove;
|
|
|
|
|
|
|
|
StringName grouped;
|
|
|
|
StringName ungrouped;
|
|
|
|
|
|
|
|
StringName has_point;
|
|
|
|
StringName get_drag_data;
|
|
|
|
StringName can_drop_data;
|
|
|
|
StringName drop_data;
|
|
|
|
|
2017-01-12 00:51:08 -03:00
|
|
|
StringName screen_entered;
|
|
|
|
StringName screen_exited;
|
|
|
|
StringName viewport_entered;
|
|
|
|
StringName viewport_exited;
|
|
|
|
StringName camera_entered;
|
|
|
|
StringName camera_exited;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2014-11-05 21:20:42 -03:00
|
|
|
StringName _body_enter_tree;
|
|
|
|
StringName _body_exit_tree;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2015-03-17 00:45:25 -03:00
|
|
|
StringName _area_enter_tree;
|
|
|
|
StringName _area_exit_tree;
|
|
|
|
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName changed;
|
|
|
|
StringName _shader_changed;
|
|
|
|
|
|
|
|
StringName _spatial_editor_group;
|
|
|
|
StringName _request_gizmo;
|
|
|
|
|
|
|
|
StringName offset;
|
|
|
|
StringName unit_offset;
|
|
|
|
StringName rotation_mode;
|
2014-07-06 11:49:27 -03:00
|
|
|
StringName rotate;
|
2014-02-09 22:10:30 -03:00
|
|
|
StringName v_offset;
|
|
|
|
StringName h_offset;
|
|
|
|
|
|
|
|
StringName transform_pos;
|
|
|
|
StringName transform_rot;
|
|
|
|
StringName transform_scale;
|
|
|
|
|
|
|
|
StringName _update_remote;
|
|
|
|
StringName _update_pairs;
|
|
|
|
|
2017-01-12 00:51:08 -03:00
|
|
|
StringName area_entered;
|
|
|
|
StringName area_exited;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2017-03-13 16:45:27 +01:00
|
|
|
StringName _get_minimum_size;
|
2014-02-09 22:10:30 -03:00
|
|
|
|
2014-05-29 10:56:39 -03:00
|
|
|
StringName _im_update;
|
|
|
|
StringName _queue_update;
|
|
|
|
|
2014-06-11 10:41:03 -03:00
|
|
|
StringName baked_light_changed;
|
|
|
|
StringName _baked_light_changed;
|
|
|
|
|
2014-09-15 11:33:30 -03:00
|
|
|
StringName _mouse_enter;
|
|
|
|
StringName _mouse_exit;
|
|
|
|
|
2014-12-07 02:04:20 -03:00
|
|
|
StringName frame_changed;
|
2014-09-15 11:33:30 -03:00
|
|
|
|
2015-06-29 00:29:49 -03:00
|
|
|
StringName playback_speed;
|
|
|
|
StringName playback_active;
|
|
|
|
StringName autoplay;
|
|
|
|
StringName blend_times;
|
|
|
|
StringName speed;
|
|
|
|
|
|
|
|
NodePath path_pp;
|
|
|
|
|
2016-05-14 23:48:23 -03:00
|
|
|
StringName _default;
|
2014-05-29 10:56:39 -03:00
|
|
|
|
2016-05-17 18:27:15 -03:00
|
|
|
StringName node_configuration_warning_changed;
|
|
|
|
|
2018-06-18 22:10:48 -03:00
|
|
|
StringName output;
|
|
|
|
|
2018-08-20 13:38:18 -03:00
|
|
|
StringName parameters_base_path;
|
|
|
|
|
2019-02-14 10:19:03 -03:00
|
|
|
StringName tracks_changed;
|
|
|
|
|
2016-05-27 14:18:40 -03:00
|
|
|
enum {
|
2017-03-05 16:44:50 +01:00
|
|
|
MAX_MATERIALS = 32
|
2016-05-27 14:18:40 -03:00
|
|
|
};
|
|
|
|
StringName mesh_materials[MAX_MATERIALS];
|
|
|
|
StringName _mesh_changed;
|
2014-02-09 22:10:30 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SCENE_STRING_NAMES_H
|