feat: modules moved and engine moved to submodule
This commit is contained in:
parent
dfb5e645cd
commit
c33d2130cc
5136 changed files with 225275 additions and 64485 deletions
|
|
@ -35,7 +35,14 @@
|
|||
#include "servers/audio/audio_stream.h"
|
||||
|
||||
void AudioStreamPlayer::_notification(int p_what) {
|
||||
internal->notification(p_what);
|
||||
if (p_what == NOTIFICATION_ACCESSIBILITY_UPDATE) {
|
||||
RID ae = get_accessibility_element();
|
||||
ERR_FAIL_COND(ae.is_null());
|
||||
|
||||
DisplayServer::get_singleton()->accessibility_update_set_role(ae, DisplayServer::AccessibilityRole::ROLE_AUDIO);
|
||||
} else {
|
||||
internal->notification(p_what);
|
||||
}
|
||||
}
|
||||
|
||||
void AudioStreamPlayer::set_stream(Ref<AudioStream> p_stream) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue