-WIP to add proper key swapping according to keyboard layout

-fix with non working removal of collision exception in 3D physics
This commit is contained in:
Juan Linietsky 2015-01-04 21:16:40 -03:00
parent a8bcb96ad4
commit 8c4dd8de39
5 changed files with 25 additions and 1 deletions

View file

@ -353,3 +353,8 @@ int find_keycode(const String& p_code) {
return 0;
}
int latin_keyboard_keycode_convert(int p_keycode){
return p_keycode;
}