diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-22 10:13:57 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-22 10:13:57 +0100 |
commit | 0a15f5161753e8574befb54fa72aa00214b01d35 (patch) | |
tree | 24015c3c396ab429200ac1e8ae2ab483d4f2a542 /editor | |
parent | 7fab2d7f46cc219bba04b17138e362eb5e8275e2 (diff) | |
parent | d49ac0466f354369519f2399b9610253504b17b6 (diff) |
Merge pull request #73741 from dalexeev/fix-sprite-frames-convert
Fix `SpriteFrames` data loss on 3-to-4 conversion
Diffstat (limited to 'editor')
-rw-r--r-- | editor/renames_map_3_to_4.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/renames_map_3_to_4.cpp b/editor/renames_map_3_to_4.cpp index 277df4e66c..d7cac9a2b9 100644 --- a/editor/renames_map_3_to_4.cpp +++ b/editor/renames_map_3_to_4.cpp @@ -1174,7 +1174,7 @@ const char *RenamesMap3To4::gdscript_properties_renames[][2] = { { "unit_db", "volume_db" }, // AudioStreamPlayer3D { "unit_offset", "progress_ratio" }, // PathFollow2D, PathFollow3D { "vseparation", "v_separation" }, // Theme - { "frames", "sprite_frames" }, // AnimatedSprite2D, AnimatedSprite3D + // { "frames", "sprite_frames" }, // AnimatedSprite2D, AnimatedSprite3D -- GH-73696 { nullptr, nullptr }, }; |