diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-04 15:45:16 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-10-04 15:45:16 +0200 |
commit | 7a9947f7f52acdb639682f1169a3a9b5d2ba1c56 (patch) | |
tree | 2295ba4b671a142f4fcb57a438b7ba0d4bdd03e0 | |
parent | 7f0b25e0578e177901db32ec3d10aae85a58e5af (diff) | |
parent | 51cc34a99fea7fbccf8387c51c03fb39a9b7b290 (diff) | |
download | redot-engine-7a9947f7f52acdb639682f1169a3a9b5d2ba1c56.tar.gz |
Merge pull request #82754 from BrunoArmondBraga/wrong_extents_conversion
Removes extents to size conversion
-rw-r--r-- | editor/renames_map_3_to_4.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/renames_map_3_to_4.cpp b/editor/renames_map_3_to_4.cpp index 1908e877e7..c44be7e685 100644 --- a/editor/renames_map_3_to_4.cpp +++ b/editor/renames_map_3_to_4.cpp @@ -1071,6 +1071,7 @@ const char *RenamesMap3To4::gdscript_properties_renames[][2] = { // Would need bespoke solution. // { "autowrap", "autowrap_mode" }, // Label -- Changed from bool to enum. + // { "extents", "size" }, // BoxShape3D, LightmapGI, ReflectionProbe // { "frames", "sprite_frames" }, // AnimatedSprite2D, AnimatedSprite3D -- GH-73696 // { "percent_visible, "show_percentage }, // ProgressBar -- Breaks Label and RichTextLabel. // { "pressed", "button_pressed" }, // BaseButton -- Would also rename the signal. @@ -1098,7 +1099,6 @@ const char *RenamesMap3To4::gdscript_properties_renames[][2] = { { "drag_margin_top", "drag_top_margin" }, // Camera2D { "drag_margin_v_enabled", "drag_vertical_enabled" }, // Camera2D { "enabled_focus_mode", "focus_mode" }, // BaseButton - Removed - { "extents", "size" }, // BoxShape3D, LightmapGI, ReflectionProbe { "extra_spacing_bottom", "spacing_bottom" }, // Font { "extra_spacing_top", "spacing_top" }, // Font { "focus_neighbour_bottom", "focus_neighbor_bottom" }, // Control @@ -1198,7 +1198,6 @@ const char *RenamesMap3To4::csharp_properties_renames[][2] = { { "DragMarginTop", "DragTopMargin" }, // Camera2D { "DragMarginVEnabled", "DragVerticalEnabled" }, // Camera2D { "EnabledFocusMode", "FocusMode" }, // BaseButton - Removed - { "Extents", "Size" }, // BoxShape3D, LightmapGI, ReflectionProbe { "ExtraSpacingBottom", "SpacingBottom" }, // Font { "ExtraSpacingTop", "SpacingTop" }, // Font { "FocusNeighbourBottom", "FocusNeighborBottom" }, // Control |