summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2024-07-06 05:18:23 +0900
committerSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2024-07-06 05:36:45 +0900
commit59667f8ea278c79e5b8685cd6243d792315ae006 (patch)
tree37366a055520b272c1bb595161e682dbc81e7834 /misc
parentb97110cd307e4d78e20bfafe5de6c082194b2cd6 (diff)
downloadredot-engine-59667f8ea278c79e5b8685cd6243d792315ae006.tar.gz
Fix property type of Sprite3D `frame_coords` to Vector2i from Vector2
Diffstat (limited to 'misc')
-rw-r--r--misc/extension_api_validation/4.2-stable.expected7
1 files changed, 7 insertions, 0 deletions
diff --git a/misc/extension_api_validation/4.2-stable.expected b/misc/extension_api_validation/4.2-stable.expected
index 7b93df70fa..4b0d22a1aa 100644
--- a/misc/extension_api_validation/4.2-stable.expected
+++ b/misc/extension_api_validation/4.2-stable.expected
@@ -372,3 +372,10 @@ GH-91382
Validate extension JSON: Error: Field 'classes/AudioStreamPlaybackPolyphonic/methods/play_stream/arguments': size changed value in new API, from 4 to 6.
Optional arguments added. Compatibility methods registered.
+
+
+GH-93982
+--------
+Validate extension JSON: Error: Field 'classes/Sprite3D/properties/frame_coords': type changed value in new API, from "Vector2" to "Vector2i".
+
+The type was wrong to begin with and has been corrected. Vector2 and Vector2i are convertible, so it should be compatible.