diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-09 12:33:09 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-09 12:33:09 +0100 |
commit | dd275238d1d38df42949969e468b6889bbf21d9f (patch) | |
tree | 40b9842aff182d3940a37ba1701b35ea3743666d /misc/extension_api_validation | |
parent | 7612e655a96fcfdc3344623639681efb9c1a3968 (diff) | |
parent | 35c99bbcc1c6728943308fa1b867e57d096bb813 (diff) | |
download | redot-engine-dd275238d1d38df42949969e468b6889bbf21d9f.tar.gz |
Merge pull request #86907 from aaronfranke/getter-const
Change AudioStreamPlayer autoplay and GLTFBufferView getters to be const
Diffstat (limited to 'misc/extension_api_validation')
-rw-r--r-- | misc/extension_api_validation/4.2-stable.expected | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/misc/extension_api_validation/4.2-stable.expected b/misc/extension_api_validation/4.2-stable.expected index 9389fe53f1..9b1aacc2e9 100644 --- a/misc/extension_api_validation/4.2-stable.expected +++ b/misc/extension_api_validation/4.2-stable.expected @@ -89,3 +89,18 @@ GH-68420 Validate extension JSON: Error: Field 'classes/Node/methods/_get_configuration_warnings/return_value': type changed value in new API, from "PackedStringArray" to "Array". Allow configuration warnings to refer to a property. Compatibility method registered. + + +GH-86907 +-------- + +Validate extension JSON: Error: Field 'classes/AudioStreamPlayer/methods/is_autoplay_enabled': is_const changed value in new API, from false to true. +Validate extension JSON: Error: Field 'classes/AudioStreamPlayer2D/methods/is_autoplay_enabled': is_const changed value in new API, from false to true. +Validate extension JSON: Error: Field 'classes/AudioStreamPlayer3D/methods/is_autoplay_enabled': is_const changed value in new API, from false to true. +Validate extension JSON: Error: Field 'classes/GLTFBufferView/methods/get_buffer': is_const changed value in new API, from false to true. +Validate extension JSON: Error: Field 'classes/GLTFBufferView/methods/get_byte_length': is_const changed value in new API, from false to true. +Validate extension JSON: Error: Field 'classes/GLTFBufferView/methods/get_byte_offset': is_const changed value in new API, from false to true. +Validate extension JSON: Error: Field 'classes/GLTFBufferView/methods/get_byte_stride': is_const changed value in new API, from false to true. +Validate extension JSON: Error: Field 'classes/GLTFBufferView/methods/get_indices': is_const changed value in new API, from false to true. + +Change AudioStreamPlayer* is_autoplay_enabled and GLTFBufferView getters to be const. |