summaryrefslogtreecommitdiffstats
path: root/editor/renames_map_3_to_4.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* [Scene] Add `SceneStringNames::panel`A Thousand Ships2024-05-301-1/+1
|
* Add ufbx for FBX importingK. S. Ernest (iFire) Lee2024-02-231-1/+1
| | | | | | | | | | | | | | | | This update introduces a new import method for FBX files using ufbx. If the fbx2gltf import fails, it will use the most recently cached scene from the ufbx import. The process is sped up by introducing threads to load the ufbx portion. Key changes include: - Support for importing geometry helper nodes in FBX files. - Addition of cameras and lights with updated names. - Removal of the fbx importer manager. - Introduction of ModelDocument3D and updates to its methods. - Changes to FBX import options and visibility. - Updating the documentation and handling some errors. - Store the original non-unique node, mesh and animation names in FBX and glTF. Co-Authored-By: bqqbarbhg <bqqbarbhg@gmail.com>
* Remove incorrect C# rename from the project converterYuri Sizov2024-01-241-1/+0
|
* Fix invalid 3-to-4 renames of `add_animation` to `add_animation_library`A Thousand Ships2024-01-111-2/+1
| | | | | This rename breaks `SpriteFrames` and also isn't valid as the new method takes an `AnimationLibrary`, not an `Animation`
* Update deferred calls to use Callableskobewi2024-01-091-1/+0
|
* Fix wrong shader renameGuilherme2023-10-201-1/+1
| | | | Co-authored-by: BrunoArmondBraga <abraga3547bruno@gmail.com>
* Removes extents to size conversionBrunoArmondBraga2023-10-031-2/+1
| | | | Co-authored-by: Guilhermev25 <guilhermeferreira2529@hotmail.com>
* Add navigation renames to 3to4 convertersmix82023-03-301-0/+38
| | | | Adds navigation renames to 3to4 converter.
* Project converter: Remove Tween properties/signals from renamesRémi Verschelde2023-03-291-8/+0
| | | | | | The Tween class in Godot 3 is fully incompatible with Godot 4, there's no point doing these renames. It also makes it harder to use Threen, my (currently WIP) forward-port of the Godot 3 Tween to Godot 4.
* Add GDScript `to_wchar_buffer` and `get_string_from_wchar` functions.bruvzg2023-03-211-0/+1
|
* Add conversion for common Theme OverridesMarius Hanl2023-03-101-0/+45
|
* Merge pull request #74524 from rcorre/3to4-renamesRémi Verschelde2023-03-081-0/+3
|\ | | | | | | Add some missing renames to 3to4 tool.
| * Add some missing renames to 3to4 tool.Ryan Roden-Corrent2023-03-061-0/+3
| | | | | | | | | | | | | | MultiplayerPeerExtension isn't an exact replacement for NetworkedMultiplayerCustom, but at least it gets you moving in the right direction. Engine.editor_hint couldn't be fixed by the renames map, because you have to add a `()` at the end.
* | Merge pull request #74515 from Maran23/converter-vector2-tangent-orthogonalRémi Verschelde2023-03-071-0/+3
|\ \ | | | | | | | | | Add conversion for `Vector2` `tangent()` -> `orthogonal()`
| * | Add conversion for Vector2 method tangent() -> orthogonal()Marius Hanl2023-03-061-0/+3
| |/ | | | | | | For C# also: Perpendicular() -> Orthogonal()
* / Convert OpenSimplexNoise to FastNoiseLiteMarius Hanl2023-03-061-0/+3
|/ | | | - class name and octaves property
* Merge pull request #74355 from tlobig/patch-1Rémi Verschelde2023-03-061-2/+0
|\ | | | | | | remove incorrect rename of get_used_cells_by_id
| * remove incorrect rename of get_used_cells_by_idThomas Lobig2023-03-041-2/+0
| | | | | | renaming get_used_cells_by_id to get_used_cells is not only unecessary, it introduces hard to debug issues
* | Fix Camera2D position smoothing properties not being groupedMarcus Elg2023-03-031-6/+6
|/
* Add 3-to-4 renames for project settings in project.godotRémi Verschelde2023-02-271-0/+49
| | | | | | | In the ConfigFile format, the first subpath is the category and is not part of the line that the regex would match. Fixes #66125.
* Cleanup 3-to-4 renames, prevent common words replacementsRémi Verschelde2023-02-271-162/+97
| | | | | Fixes #73505. Fixes #73996.
* Converter: Rename 3.x Vector2 clamped to limit_lengthThomas Lobig2023-02-261-6/+6
|
* Fix `SpriteFrames` data loss on 3-to-4 conversionDanil Alexeev2023-02-221-1/+1
|
* Remove deprecated methods from Bone2DYuri Sizov2023-02-171-0/+4
| | | | - also add them to the project convertor
* Tweak comments in `renames_map_3_to_4` & reorderMicky2023-02-131-281/+283
| | | | | | | | | | | | | Generally moves comments and some entries around, as well as fixing typos and miscellaneous inconsistencies. To go more in detail on a few things: - In comments, separate between class names and notes with "--"; - In comments, replace all "broke" with "-- Breaks" - Moves `@GlobalScope` constants to its own group in `enum_renames` - Move `{ "remove", "remove_at" },` underneath the Builtin Types methods. - Move C#'s `AddNode3dGizmoPlugin` to where it should be, in alphabetical order. - Give more details to some class renames. - Comments out `remove` -> `remove_at`
* Clean up ProjectConverter3To4 architecture, move renames map to separate fileRémi Verschelde2023-02-101-0/+1797
This allows properly limiting what features depend on the RegEx module (doing the actual conversion) and what features only require the renames data (GDScript suggestions). Also better excludes the conversion command line options when actually disabling deprecated code. Fixes #73029.