iOS modular build and export implementation.

This commit is contained in:
bruvzg
2019-11-29 08:54:39 +02:00
parent 52e3993eb0
commit 2ef8c5fac5
38 changed files with 210 additions and 75 deletions

View File

@@ -175,9 +175,6 @@ Error OS_Android::initialize(const VideoMode &p_desired, int p_video_driver, int
input = memnew(InputDefault);
input->set_fallback_mapping(godot_java->get_input_fallback_mapping());
///@TODO implement a subclass for Android and instantiate that instead
camera_server = memnew(CameraServer);
//power_manager = memnew(PowerAndroid);
return OK;
@@ -196,8 +193,6 @@ void OS_Android::delete_main_loop() {
void OS_Android::finalize() {
memdelete(camera_server);
memdelete(input);
}