summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorDanil Alexeev <danil@alexeev.xyz>2023-02-22 10:45:00 +0300
committerDanil Alexeev <danil@alexeev.xyz>2023-02-22 11:17:10 +0300
commitd49ac0466f354369519f2399b9610253504b17b6 (patch)
treec35f22ddfa1c790ba1dedda1d6a34c0b35a603a5 /editor
parente13fae1414b0369fdd3f51b4e3529fd3f272b0e1 (diff)
Fix `SpriteFrames` data loss on 3-to-4 conversion
Diffstat (limited to 'editor')
-rw-r--r--editor/renames_map_3_to_4.cpp2
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 },
};