Преглед изворни кода

Reenabled module and fixed missing const

Bastiaan Olij пре 7 година
родитељ
комит
03d02e88fc

+ 1 - 2
modules/mobile_vr/config.py

@@ -1,6 +1,5 @@
 def can_build(env, platform):
-    # should probably change this to only be true on iOS and Android
-    return False
+    return True
 
 def configure(env):
     pass

+ 2 - 2
modules/mobile_vr/mobile_interface.cpp → modules/mobile_vr/mobile_vr_interface.cpp

@@ -28,7 +28,7 @@
 /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */
 /*************************************************************************/
 
-#include "mobile_interface.h"
+#include "mobile_vr_interface.h"
 #include "core/os/input.h"
 #include "core/os/os.h"
 #include "servers/visual/visual_server_global.h"
@@ -279,7 +279,7 @@ bool MobileVRInterface::is_stereo() {
 	return true;
 };
 
-bool MobileVRInterface::is_initialized() {
+bool MobileVRInterface::is_initialized() const {
 	return (initialized);
 };
 

+ 2 - 2
modules/mobile_vr/mobile_interface.h → modules/mobile_vr/mobile_vr_interface.h

@@ -134,7 +134,7 @@ public:
 	virtual StringName get_name() const;
 	virtual int get_capabilities() const;
 
-	virtual bool is_initialized();
+	virtual bool is_initialized() const;
 	virtual bool initialize();
 	virtual void uninitialize();
 
@@ -150,4 +150,4 @@ public:
 	~MobileVRInterface();
 };
 
-#endif // MOBILE_VR_INTERFACE_H
+#endif // !MOBILE_VR_INTERFACE_H

+ 1 - 1
modules/mobile_vr/register_types.cpp

@@ -30,7 +30,7 @@
 
 #include "register_types.h"
 
-#include "mobile_interface.h"
+#include "mobile_vr_interface.h"
 
 void register_mobile_vr_types() {
 	ClassDB::register_class<MobileVRInterface>();