Moved the error macros.

This commit is contained in:
Relintai 2022-08-17 15:14:19 +02:00
parent 220b2db443
commit be16fe23ad
147 changed files with 179 additions and 171 deletions

View File

@ -184,6 +184,7 @@ SConscript("math/SCsub")
SConscript("string/SCsub")
SConscript("containers/SCsub")
SConscript("variant/SCsub")
SConscript("error/SCsub")
SConscript("crypto/SCsub")
SConscript("io/SCsub")
SConscript("log/SCsub")

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_macros.h"
#include "core/error/error_macros.h"
class BitFieldDynamic {
public:

View File

@ -32,7 +32,7 @@
#include <string.h>
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/os/memory.h"
#include "core/safe_refcount.h"

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/hashfuncs.h"
#include "core/containers/list.h"
#include "core/math/math_funcs.h"

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/os/memory.h"
#include "core/containers/sort_array.h"

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/os/memory.h"
#include "core/containers/pool_vector.h"
#include "core/containers/sort_array.h"

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/os/memory.h"
// based on the very nice implementation of rb-trees by:

View File

@ -31,7 +31,7 @@
#ifndef RB_MAP_H
#define RB_MAP_H
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/os/memory.h"
#include "core/pair.h"

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/typedefs.h"
template <class T>

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/typedefs.h"
#define ERR_BAD_COMPARE(cond) \

View File

@ -37,7 +37,7 @@
*/
#include "core/containers/cowdata.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/os/memory.h"
#include "core/containers/sort_array.h"

7
core/error/SCsub Normal file
View File

@ -0,0 +1,7 @@
#!/usr/bin/env python
Import("env")
env_error = env.Clone()
env_error.add_source_files(env.core_sources, "*.cpp")

View File

@ -32,7 +32,7 @@
#include "core/io/logger.h"
#include "core/string/ustring.h"
#include "os/os.h"
#include "core/os/os.h"
static ErrorHandlerList *error_handler_list = nullptr;

View File

@ -30,7 +30,7 @@
#include "image.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/hash_map.h"
#include "core/io/image_loader.h"
#include "core/io/resource_loader.h"

View File

@ -30,7 +30,7 @@
#include "bsp_tree.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/string/print_string.h"
void BSP_Tree::from_aabb(const AABB &p_aabb) {

View File

@ -58,7 +58,7 @@ subject to the following restrictions:
#include "convex_hull.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/math/aabb.h"
#include "core/math/math_defs.h"
#include "core/os/memory.h"

View File

@ -30,7 +30,7 @@
#include "math_funcs.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
RandomPCG Math::default_rand(RandomPCG::DEFAULT_SEED, RandomPCG::DEFAULT_INC);

View File

@ -33,7 +33,7 @@
#include "core/math/math_funcs.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
class String;

View File

@ -32,7 +32,7 @@
/*************************************************************************/
#include "core/math/math_funcs.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "vector2.h"

View File

@ -31,7 +31,7 @@
#ifndef VECTOR3I_H
#define VECTOR3I_H
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/math/math_funcs.h"
class String;

View File

@ -31,7 +31,7 @@
#ifndef VECTOR4I_H
#define VECTOR4I_H
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/math/math_funcs.h"
class String;

View File

@ -30,7 +30,7 @@
#include "memory.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/safe_refcount.h"
#include <stdio.h>

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/safe_refcount.h"
#include <stddef.h>

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_list.h"
#include "core/error/error_list.h"
#include "core/typedefs.h"
#if !defined(NO_THREADS)

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_list.h"
#include "core/error/error_list.h"
#if !defined(NO_THREADS)

View File

@ -30,7 +30,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "core/error_list.h"
#include "core/error/error_list.h"
#include "core/typedefs.h"
#if !defined(NO_THREADS)

View File

@ -30,7 +30,7 @@
#include "pool_allocator.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/os/memory.h"
#include "core/os/os.h"
#include "core/string/print_string.h"

View File

@ -32,7 +32,7 @@
#include "safe_refcount.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
// On C++14 we don't have std::atomic::is_always_lockfree, so this is the best we can do
void check_lockless_atomics() {

View File

@ -146,7 +146,7 @@ T *_nullptr() {
#include "core/int_types.h"
#include "core/error_list.h"
#include "core/error/error_list.h"
/** Generic ABS function, for math uses please use Math::abs */

View File

@ -35,7 +35,7 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/math/math_defs.h"
#include "core/math/math_funcs.h"

View File

@ -35,7 +35,7 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/engine.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/math/basis.h"
#include "core/math/math_funcs.h"
#include "core/math/quaternion.h"

View File

@ -31,7 +31,7 @@
#include "audio_stream_preview.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/math/audio_frame.h"
#include "core/os/memory.h"

View File

@ -33,7 +33,7 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/variant/dictionary.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/math/aabb.h"
#include "core/math/basis.h"

View File

@ -38,8 +38,8 @@
#include "core/project_settings.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/math/vector2.h"
#include "core/os/dir_access.h"
#include "core/os/memory.h"

View File

@ -41,7 +41,7 @@
#include "scene/resources/theme.h"
#include "core/io/xml_parser.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/object/method_bind.h"
#include "core/object/object.h"

View File

@ -33,7 +33,7 @@
#include "core/containers/map.h"
#include "core/variant/variant.h"
#include "core/object/reference.h"
#include "core/error_list.h"
#include "core/error/error_list.h"
#include "core/string/ustring.h"
#include "core/containers/vector.h"

View File

@ -41,8 +41,8 @@
#include "core/project_settings.h"
#include "core/object/class_db.h"
#include "core/variant/dictionary.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/io/resource_loader.h"
#include "core/math/math_defs.h"
#include "core/math/math_funcs.h"

View File

@ -40,7 +40,7 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/variant/dictionary.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/io/resource_loader.h"
#include "core/containers/map.h"
#include "core/math/math_funcs.h"

View File

@ -31,8 +31,8 @@
#include "editor_data.h"
#include "core/object/class_db.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/io/config_file.h"
#include "core/io/resource_loader.h"
#include "core/os/file_access.h"

View File

@ -38,8 +38,8 @@
#include "scene/gui/button.h"
#include "scene/gui/line_edit.h"
#include "core/object/class_db.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/math/vector2.h"
#include "core/os/dir_access.h"
#include "core/os/memory.h"

View File

@ -32,7 +32,7 @@
#include "core/object/class_db.h"
#include "core/crypto/crypto_core.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/io/config_file.h"
#include "core/io/file_access_pack.h" // PACK_HEADER_MAGIC, PACK_FORMAT_VERSION
#include "core/io/resource_loader.h"

View File

@ -37,7 +37,7 @@
#include "scene/main/timer.h"
#include "scene/resources/texture.h"
#include "core/error_list.h"
#include "core/error/error_list.h"
#include "core/containers/list.h"
#include "core/containers/map.h"
#include "core/object/object.h"

View File

@ -33,8 +33,8 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/variant/dictionary.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/math/vector2.h"
#include "core/os/dir_access.h"

View File

@ -43,7 +43,7 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/variant/dictionary.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/io/config_file.h"
#include "core/os/dir_access.h"
#include "core/os/memory.h"

View File

@ -38,7 +38,7 @@
#include "core/os/thread_safe.h"
#include "core/safe_refcount.h"
#include "core/containers/set.h"
#include "core/error_list.h"
#include "core/error/error_list.h"
#include "core/containers/hash_map.h"
#include "core/containers/list.h"
#include "core/containers/map.h"

View File

@ -34,8 +34,8 @@
#include "editor_inspector.h"
#include "editor_settings.h"
#include "core/variant/array.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/io/config_file.h"
#include "core/containers/list.h"
#include "core/string/node_path.h"

View File

@ -37,7 +37,7 @@
#include "scene/gui/rich_text_label.h"
#include "core/math/color.h"
#include "core/error_list.h"
#include "core/error/error_list.h"
#include "core/containers/map.h"
#include "core/object/object.h"
#include "core/object/reference.h"

View File

@ -34,7 +34,7 @@
#include "editor_node.h"
#include "editor_scale.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/math/rect2.h"
#include "core/math/vector2.h"
#include "core/os/input_event.h"

View File

@ -33,7 +33,7 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/variant/dictionary.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/hash_map.h"
#include "core/math/math_defs.h"
#include "core/math/math_funcs.h"

View File

@ -37,7 +37,7 @@
#include "scene/gui/box_container.h"
#include "scene/gui/item_list.h"
#include "scene/gui/line_edit.h"
#include "core/error_list.h"
#include "core/error/error_list.h"
#include "core/containers/list.h"
#include "core/math/math_defs.h"
#include "core/os/input_event.h"

View File

@ -33,7 +33,7 @@
#include "scene/gui/box_container.h"
#include "core/os/thread.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/object/object.h"
#include "core/string/ustring.h"

View File

@ -36,7 +36,7 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/engine.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/image.h"
#include "core/io/config_file.h"
#include "core/io/image_loader.h"

View File

@ -42,7 +42,7 @@
#include "scene/gui/split_container.h"
#include "core/variant/dictionary.h"
#include "core/error_list.h"
#include "core/error/error_list.h"
#include "core/containers/list.h"
#include "core/containers/map.h"
#include "core/math/rect2.h"

View File

@ -33,7 +33,7 @@
#include "editor_node.h"
#include "editor_scale.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/math/rect2.h"
#include "core/math/vector2.h"

View File

@ -38,8 +38,8 @@
#include "core/variant/array.h"
#include "core/variant/dictionary.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/io/config_file.h"
#include "core/containers/list.h"
#include "core/object/method_bind.h"

View File

@ -31,8 +31,8 @@
#include "editor_plugin_settings.h"
#include "core/object/class_db.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/io/config_file.h"
#include "core/os/dir_access.h"
#include "core/os/file_access.h"

View File

@ -34,7 +34,7 @@
#include "editor_settings.h"
#include "scene/main/timer.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/image.h"
#include "core/math/math_funcs.h"
#include "core/math/vector2.h"

View File

@ -33,7 +33,7 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/variant/dictionary.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/math/aabb.h"
#include "core/math/basis.h"
#include "core/math/math_defs.h"

View File

@ -32,7 +32,7 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/io/marshalls.h"
#include "core/io/resource_loader.h"
#include "core/math/math_defs.h"

View File

@ -31,7 +31,7 @@
#include "editor_property_name_processor.h"
#include "editor_settings.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/typedefs.h"
EditorPropertyNameProcessor *EditorPropertyNameProcessor::singleton = nullptr;

View File

@ -39,7 +39,7 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/variant/dictionary.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/io/resource_loader.h"
#include "core/containers/map.h"
#include "core/math/math_defs.h"

View File

@ -40,8 +40,8 @@
#include "editor_node.h"
#include "editor_scale.h"
#include "editor_settings.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/image.h"
#include "core/os/memory.h"

View File

@ -36,7 +36,7 @@
#include "script_editor_debugger.h"
#include "core/project_settings.h"
#include "editor_settings.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/math/math_funcs.h"
#include "core/math/rect2.h"
#include "core/math/vector2.h"

View File

@ -32,7 +32,7 @@
#include "core/os/os.h"
#include "core/error_list.h"
#include "core/error/error_list.h"
#include "core/containers/list.h"
#include "core/string/ustring.h"

View File

@ -31,7 +31,7 @@
#include "editor_run_native.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/image.h"
#include "core/os/memory.h"
#include "core/object/reference.h"

View File

@ -32,7 +32,7 @@
#include "editor_node.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/object/script_language.h"
#include "core/string/ustring.h"
#include "core/variant/variant.h"

View File

@ -34,8 +34,8 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/variant/dictionary.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/io/certs_compressed.gen.h"
#include "core/io/config_file.h"
#include "core/io/ip.h"

View File

@ -36,8 +36,8 @@
#include "editor_scale.h"
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/math/math_defs.h"
#include "core/math/math_funcs.h"
#include "core/math/rect2.h"

View File

@ -33,7 +33,7 @@
#include "editor/editor_node.h"
#include "scene/resources/packed_scene.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/io/resource_loader.h"
#include "core/os/memory.h"
#include "core/object/reference.h"

View File

@ -35,7 +35,7 @@
#include "core/io/translation_loader_po.h"
#include "editor/doc_translations.gen.h"
#include "editor/editor_translations.gen.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/os/memory.h"
#include "core/object/reference.h"
#include "core/string/translation.h"

View File

@ -33,7 +33,7 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/variant/dictionary.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/io/http_client.h"
#include "core/io/json.h"
#include "core/io/zip_io.h"

View File

@ -32,7 +32,7 @@
#include "scene/gui/dialogs.h"
#include "core/error_list.h"
#include "core/error/error_list.h"
#include "core/object/object.h"
#include "core/string/ustring.h"
#include "core/variant/variant.h"

View File

@ -48,8 +48,8 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/variant/dictionary.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/io/config_file.h"
#include "core/io/resource_saver.h"
#include "core/os/input_event.h"

View File

@ -47,8 +47,8 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/math/math_defs.h"
#include "core/math/rect2.h"
#include "core/math/vector2.h"

View File

@ -36,8 +36,8 @@
#include "editor_scale.h"
#include "core/object/class_db.h"
#include "core/variant/dictionary.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/io/resource_importer.h"
#include "core/math/vector2.h"
#include "core/os/memory.h"

View File

@ -31,7 +31,7 @@
#include "inspector_dock.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/io/resource_loader.h"
#include "core/containers/list.h"
#include "core/containers/map.h"

View File

@ -32,7 +32,7 @@
#include "core/math/math_fieldwise.h"
#include "editor_node.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/hash_map.h"
#include "core/object/undo_redo.h"
#include "editor/editor_inspector.h"

View File

@ -38,8 +38,8 @@
#include "scene/gui/grid_container.h"
#include "modules/modules_enabled.gen.h" // For gdscript.
#include "core/object/class_db.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/io/resource_saver.h"
#include "core/math/vector2.h"
#include "core/os/memory.h"

View File

@ -35,7 +35,7 @@
#include "editor/editor_scale.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/math/geometry.h"
#include "core/math/math_defs.h"
#include "core/math/math_funcs.h"

View File

@ -35,7 +35,7 @@
#include "scene/animation/animation_blend_tree.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/io/resource_loader.h"
#include "core/containers/list.h"
#include "core/math/math_funcs.h"

View File

@ -39,7 +39,7 @@
#include "scene/animation/animation_player.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/math/geometry.h"
#include "core/math/math_funcs.h"

View File

@ -33,7 +33,7 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/hash_map.h"
#include "core/io/resource_loader.h"
#include "core/containers/list.h"

View File

@ -46,8 +46,8 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/image.h"
#include "core/containers/list.h"
#include "core/math/math_funcs.h"

View File

@ -37,7 +37,7 @@
#include "scene/animation/animation_player.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/math/geometry.h"
#include "core/math/math_defs.h"

View File

@ -39,7 +39,7 @@
#include "scene/animation/animation_player.h"
#include "scene/scene_string_names.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/math/vector2.h"
#include "core/os/memory.h"

View File

@ -55,8 +55,8 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/engine.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/io/resource_loader.h"
#include "core/math/geometry.h"
#include "core/math/math_funcs.h"

View File

@ -38,7 +38,7 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/math/aabb.h"
#include "core/math/basis.h"
#include "core/math/geometry.h"

View File

@ -35,8 +35,8 @@
#include "scene/gui/separator.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/image.h"
#include "core/containers/list.h"
#include "core/math/vector2.h"

View File

@ -36,7 +36,7 @@
#include "editor/editor_scale.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/image.h"
#include "core/math/math_defs.h"
#include "core/math/math_funcs.h"

View File

@ -42,8 +42,8 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_list.h"
#include "core/error_macros.h"
#include "core/error/error_list.h"
#include "core/error/error_macros.h"
#include "core/image.h"
#include "core/containers/list.h"
#include "core/math/aabb.h"

View File

@ -40,7 +40,7 @@
#include "scene/resources/world.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/math/basis.h"
#include "core/math/math_funcs.h"

View File

@ -40,7 +40,7 @@
#include "core/variant/array.h"
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/math/math_funcs.h"
#include "core/math/rect2.h"

View File

@ -35,7 +35,7 @@
#include "scene/resources/multimesh.h"
#include "spatial_editor_plugin.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/map.h"
#include "core/math/basis.h"
#include "core/math/face3.h"

View File

@ -32,7 +32,7 @@
#include "core/io/resource_loader.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/containers/map.h"
#include "core/math/aabb.h"

View File

@ -33,7 +33,7 @@
#include "editor/plugins/spatial_editor_plugin.h"
#include "scene/3d/physics_body.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/os/memory.h"
#include "scene/gui/box_container.h"
#include "scene/gui/control.h"

View File

@ -35,7 +35,7 @@
#include "editor/editor_settings.h"
#include "core/object/class_db.h"
#include "core/variant/dictionary.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/os/memory.h"
#include "core/object/resource.h"

View File

@ -34,7 +34,7 @@
#include "scene/3d/skeleton.h"
#include "scene/main/viewport.h"
#include "core/object/class_db.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/containers/list.h"
#include "core/containers/map.h"
#include "core/os/memory.h"

View File

@ -52,7 +52,7 @@
#include "core/object/class_db.h"
#include "core/math/color.h"
#include "core/variant/dictionary.h"
#include "core/error_macros.h"
#include "core/error/error_macros.h"
#include "core/io/config_file.h"
#include "core/io/resource_saver.h"
#include "core/containers/map.h"

Some files were not shown because too many files have changed in this diff Show More