diff options
author | Marius Hanl <mariushanl@web.de> | 2023-03-06 22:28:15 +0100 |
---|---|---|
committer | Marius Hanl <mariushanl@web.de> | 2023-03-06 22:41:52 +0100 |
commit | da4ec876730f17caaa75438b68e7e6ff48fec86b (patch) | |
tree | 9c3231ebcb83adc75709755a2f7a07e621c8e847 | |
parent | d857005f5fb4f6cfb2d15621f46ad4b61137ef6d (diff) | |
download | redot-engine-da4ec876730f17caaa75438b68e7e6ff48fec86b.tar.gz |
Add conversion for Vector2 method tangent() -> orthogonal()
For C# also: Perpendicular() -> Orthogonal()
-rw-r--r-- | editor/renames_map_3_to_4.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/renames_map_3_to_4.cpp b/editor/renames_map_3_to_4.cpp index eb63a244a6..ef348e538f 100644 --- a/editor/renames_map_3_to_4.cpp +++ b/editor/renames_map_3_to_4.cpp @@ -1132,6 +1132,7 @@ const char *RenamesMap3To4::gdscript_properties_renames[][2] = { { "tab_align", "tab_alignment" }, // TabContainer { "table_hseparation", "table_h_separation" }, // Theme { "table_vseparation", "table_v_separation" }, // Theme + { "tangent", "orthogonal" }, // Vector2 { "toplevel", "top_level" }, // Node { "translation", "position" }, // Node3D { "unit_db", "volume_db" }, // AudioStreamPlayer3D @@ -1195,6 +1196,7 @@ const char *RenamesMap3To4::csharp_properties_renames[][2] = { { "Oneshot", "OneShot" }, // AnimatedTexture { "OutOfRangeMode", "MaxPolyphony" }, // AudioStreamPlayer3D { "PauseMode", "ProcessMode" }, // Node + { "Perpendicular", "Orthogonal" }, // Vector2 - Only exists in C# { "PhysicalScancode", "PhysicalKeycode" }, // InputEventKey { "PopupExclusive", "Exclusive" }, // Window { "ProximityFadeEnable", "ProximityFadeEnabled" }, // Material @@ -1225,6 +1227,7 @@ const char *RenamesMap3To4::csharp_properties_renames[][2] = { { "TabAlign", "TabAlignment" }, // TabContainer { "TableHseparation", "TableHSeparation" }, // Theme { "TableVseparation", "TableVSeparation" }, // Theme + { "Tangent", "Orthogonal" }, // Vector2 { "Toplevel", "TopLevel" }, // Node { "Translation", "Position" }, // Node3D { "UnitDb", "VolumeDb" }, // AudioStreamPlayer3D |