From 167b7b55338761e3cb48677219d41f5bfc32c839 Mon Sep 17 00:00:00 2001 From: Bastiaan Olij Date: Wed, 1 Nov 2017 21:46:37 +1100 Subject: Adding rumble support to ARVR controllers (if implemented on the ARVR interface) --- modules/gdnative/nativearvr/arvr_interface_gdnative.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'modules/gdnative/nativearvr/arvr_interface_gdnative.cpp') diff --git a/modules/gdnative/nativearvr/arvr_interface_gdnative.cpp b/modules/gdnative/nativearvr/arvr_interface_gdnative.cpp index ff8bda162f..e2a7019fa4 100644 --- a/modules/gdnative/nativearvr/arvr_interface_gdnative.cpp +++ b/modules/gdnative/nativearvr/arvr_interface_gdnative.cpp @@ -383,4 +383,16 @@ void GDAPI godot_arvr_set_controller_axis(godot_int p_controller_id, godot_int p } } } + +godot_real GDAPI godot_arvr_get_controller_rumble(godot_int p_controller_id) { + ARVRServer *arvr_server = ARVRServer::get_singleton(); + ERR_FAIL_NULL_V(arvr_server, 0.0); + + ARVRPositionalTracker *tracker = arvr_server->find_by_type_and_id(ARVRServer::TRACKER_CONTROLLER, p_controller_id); + if (tracker != NULL) { + return tracker->get_rumble(); + } + + return 0.0; +} } -- cgit v1.2.3