2
0
Эх сурвалжийг харах

Merge pull request #10105 from eska014/html5-touch-hint

Implement OS.has_touchscreen_ui_hint() in HTML5 platform
Rémi Verschelde 8 жил өмнө
parent
commit
6d213909cb

+ 5 - 1
platform/javascript/os_javascript.cpp

@@ -872,7 +872,11 @@ void OS_JavaScript::process_accelerometer(const Vector3 &p_accelerometer) {
 
 bool OS_JavaScript::has_touchscreen_ui_hint() const {
 
-	return false; //???
+	/* clang-format off */
+	return EM_ASM_INT_V(
+		return 'ontouchstart' in window;
+	);
+	/* clang-format on */
 }
 
 void OS_JavaScript::main_loop_request_quit() {