1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Android: Remove non-functional native video OS methods

Those methods are only properly implemented for iOS.

Supersedes #43811.
This commit is contained in:
Rémi Verschelde
2021-05-07 16:42:17 +02:00
parent a0a22ef49f
commit e96f0ea1d7
7 changed files with 13 additions and 113 deletions

View File

@@ -475,23 +475,20 @@ int OS::get_processor_count() const {
Error OS::native_video_play(String p_path, float p_volume, String p_audio_track, String p_subtitle_track) {
return FAILED;
};
}
bool OS::native_video_is_playing() const {
return false;
};
}
void OS::native_video_pause(){
void OS::native_video_pause() {
}
};
void OS::native_video_unpause() {
}
void OS::native_video_unpause(){
};
void OS::native_video_stop(){
};
void OS::native_video_stop() {
}
void OS::set_mouse_mode(MouseMode p_mode) {
}