mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 22:21:18 +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:
parent
a0a22ef49f
commit
e96f0ea1d7
7 changed files with 13 additions and 113 deletions
|
|
@ -57,10 +57,6 @@ private:
|
|||
jmethodID _set_screen_orientation = 0;
|
||||
jmethodID _get_screen_orientation = 0;
|
||||
jmethodID _get_system_dir = 0;
|
||||
jmethodID _play_video = 0;
|
||||
jmethodID _is_video_playing = 0;
|
||||
jmethodID _pause_video = 0;
|
||||
jmethodID _stop_video = 0;
|
||||
|
||||
public:
|
||||
GodotIOJavaWrapper(JNIEnv *p_env, jobject p_godot_io_instance);
|
||||
|
|
@ -83,10 +79,6 @@ public:
|
|||
void set_screen_orientation(int p_orient);
|
||||
int get_screen_orientation() const;
|
||||
String get_system_dir(int p_dir);
|
||||
void play_video(const String &p_path);
|
||||
bool is_video_playing();
|
||||
void pause_video();
|
||||
void stop_video();
|
||||
};
|
||||
|
||||
#endif /* !JAVA_GODOT_IO_WRAPPER_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue