diff options
Diffstat (limited to 'core/object')
-rw-r--r-- | core/object/callable_method_pointer.cpp | 6 | ||||
-rw-r--r-- | core/object/callable_method_pointer.h | 6 | ||||
-rw-r--r-- | core/object/class_db.cpp | 6 | ||||
-rw-r--r-- | core/object/class_db.h | 8 | ||||
-rw-r--r-- | core/object/message_queue.cpp | 6 | ||||
-rw-r--r-- | core/object/message_queue.h | 6 | ||||
-rw-r--r-- | core/object/method_bind.cpp | 6 | ||||
-rw-r--r-- | core/object/method_bind.h | 6 | ||||
-rw-r--r-- | core/object/object.cpp | 6 | ||||
-rw-r--r-- | core/object/object.h | 6 | ||||
-rw-r--r-- | core/object/object_id.h | 6 | ||||
-rw-r--r-- | core/object/ref_counted.cpp | 6 | ||||
-rw-r--r-- | core/object/ref_counted.h | 6 | ||||
-rw-r--r-- | core/object/script_instance.cpp | 6 | ||||
-rw-r--r-- | core/object/script_instance.h | 6 | ||||
-rw-r--r-- | core/object/script_language.cpp | 6 | ||||
-rw-r--r-- | core/object/script_language.h | 8 | ||||
-rw-r--r-- | core/object/script_language_extension.cpp | 6 | ||||
-rw-r--r-- | core/object/script_language_extension.h | 6 | ||||
-rw-r--r-- | core/object/undo_redo.cpp | 6 | ||||
-rw-r--r-- | core/object/undo_redo.h | 6 | ||||
-rw-r--r-- | core/object/worker_thread_pool.cpp | 6 | ||||
-rw-r--r-- | core/object/worker_thread_pool.h | 6 |
23 files changed, 94 insertions, 48 deletions
diff --git a/core/object/callable_method_pointer.cpp b/core/object/callable_method_pointer.cpp index ed400788b1..234cb804b1 100644 --- a/core/object/callable_method_pointer.cpp +++ b/core/object/callable_method_pointer.cpp @@ -2,9 +2,11 @@ /* callable_method_pointer.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/callable_method_pointer.h b/core/object/callable_method_pointer.h index 86c66593bd..c451f5ca7e 100644 --- a/core/object/callable_method_pointer.h +++ b/core/object/callable_method_pointer.h @@ -2,9 +2,11 @@ /* callable_method_pointer.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/class_db.cpp b/core/object/class_db.cpp index bad224eff4..3ec1f6e7b4 100644 --- a/core/object/class_db.cpp +++ b/core/object/class_db.cpp @@ -2,9 +2,11 @@ /* class_db.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/class_db.h b/core/object/class_db.h index 81100d7586..101f8fd301 100644 --- a/core/object/class_db.h +++ b/core/object/class_db.h @@ -2,9 +2,11 @@ /* class_db.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -177,7 +179,7 @@ public: // Native structs, used by binder struct NativeStruct { - String ccode; // C code to create the native struct, fields separated by ; Arrays accepted (even containing other structs), also function pointers. All types must be Godot types. + String ccode; // C code to create the native struct, fields separated by ; Arrays accepted (even containing other structs), also function pointers. All types must be Redot types. uint64_t struct_size; // local size of struct, for comparison }; static HashMap<StringName, NativeStruct> native_structs; diff --git a/core/object/message_queue.cpp b/core/object/message_queue.cpp index 4b0b1ce63d..25296bbd36 100644 --- a/core/object/message_queue.cpp +++ b/core/object/message_queue.cpp @@ -2,9 +2,11 @@ /* message_queue.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/message_queue.h b/core/object/message_queue.h index 673eb3845b..ee62919356 100644 --- a/core/object/message_queue.h +++ b/core/object/message_queue.h @@ -2,9 +2,11 @@ /* message_queue.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/method_bind.cpp b/core/object/method_bind.cpp index b530101058..4cbba21642 100644 --- a/core/object/method_bind.cpp +++ b/core/object/method_bind.cpp @@ -2,9 +2,11 @@ /* method_bind.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/method_bind.h b/core/object/method_bind.h index e06eb1f8fa..875877be6a 100644 --- a/core/object/method_bind.h +++ b/core/object/method_bind.h @@ -2,9 +2,11 @@ /* method_bind.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/object.cpp b/core/object/object.cpp index ef1ca8132c..e88b3e70d6 100644 --- a/core/object/object.cpp +++ b/core/object/object.cpp @@ -2,9 +2,11 @@ /* object.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/object.h b/core/object/object.h index 8f93b75bd8..308fdc2ab9 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -2,9 +2,11 @@ /* object.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/object_id.h b/core/object/object_id.h index 7b677cb05b..b2d09c8438 100644 --- a/core/object/object_id.h +++ b/core/object/object_id.h @@ -2,9 +2,11 @@ /* object_id.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/ref_counted.cpp b/core/object/ref_counted.cpp index 1a43c1e18c..d98e7ddec7 100644 --- a/core/object/ref_counted.cpp +++ b/core/object/ref_counted.cpp @@ -2,9 +2,11 @@ /* ref_counted.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/ref_counted.h b/core/object/ref_counted.h index 22eb5a7a3f..23c0bf4829 100644 --- a/core/object/ref_counted.h +++ b/core/object/ref_counted.h @@ -2,9 +2,11 @@ /* ref_counted.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/script_instance.cpp b/core/object/script_instance.cpp index 65f44e8a6b..10a4c1b2ff 100644 --- a/core/object/script_instance.cpp +++ b/core/object/script_instance.cpp @@ -2,9 +2,11 @@ /* script_instance.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/script_instance.h b/core/object/script_instance.h index 2c8132ec1f..ef039f41e0 100644 --- a/core/object/script_instance.h +++ b/core/object/script_instance.h @@ -2,9 +2,11 @@ /* script_instance.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/script_language.cpp b/core/object/script_language.cpp index 542cb2b24d..15fa7e13f8 100644 --- a/core/object/script_language.cpp +++ b/core/object/script_language.cpp @@ -2,9 +2,11 @@ /* script_language.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/script_language.h b/core/object/script_language.h index 31d6638e58..d36dcb393a 100644 --- a/core/object/script_language.h +++ b/core/object/script_language.h @@ -2,9 +2,11 @@ /* script_language.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -112,7 +114,7 @@ class Script : public Resource { OBJ_SAVE_TYPE(Script); protected: - // Scripts are reloaded via the Script Editor when edited in Godot, + // Scripts are reloaded via the Script Editor when edited in Redot, // the LSP server when edited in a connected external editor, or // through EditorFileSystem::_update_script_documentation when updated directly on disk. virtual bool editor_can_reload_from_file() override { return false; } diff --git a/core/object/script_language_extension.cpp b/core/object/script_language_extension.cpp index 73f7ec5a54..8928f21fb2 100644 --- a/core/object/script_language_extension.cpp +++ b/core/object/script_language_extension.cpp @@ -2,9 +2,11 @@ /* script_language_extension.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/script_language_extension.h b/core/object/script_language_extension.h index d2dce34d4f..767e4732bb 100644 --- a/core/object/script_language_extension.h +++ b/core/object/script_language_extension.h @@ -2,9 +2,11 @@ /* script_language_extension.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/undo_redo.cpp b/core/object/undo_redo.cpp index 7126852a5a..db6c02f330 100644 --- a/core/object/undo_redo.cpp +++ b/core/object/undo_redo.cpp @@ -2,9 +2,11 @@ /* undo_redo.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/undo_redo.h b/core/object/undo_redo.h index ded962670c..cb85884a9b 100644 --- a/core/object/undo_redo.h +++ b/core/object/undo_redo.h @@ -2,9 +2,11 @@ /* undo_redo.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/worker_thread_pool.cpp b/core/object/worker_thread_pool.cpp index 08903d6196..f51d2e156f 100644 --- a/core/object/worker_thread_pool.cpp +++ b/core/object/worker_thread_pool.cpp @@ -2,9 +2,11 @@ /* worker_thread_pool.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ diff --git a/core/object/worker_thread_pool.h b/core/object/worker_thread_pool.h index 62296ac040..2d98b0eeb7 100644 --- a/core/object/worker_thread_pool.h +++ b/core/object/worker_thread_pool.h @@ -2,9 +2,11 @@ /* worker_thread_pool.h */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ |