diff --git a/Templates/BaseGame/game/core/utility/scripts/input.tscript b/Templates/BaseGame/game/core/utility/scripts/input.tscript index c37227ce7..2393e88b5 100644 --- a/Templates/BaseGame/game/core/utility/scripts/input.tscript +++ b/Templates/BaseGame/game/core/utility/scripts/input.tscript @@ -9,22 +9,3 @@ function getMouseAdjustAmount(%val) // based on a default camera FOV of 90' return(%val * ($cameraFov / 90) * 0.01) * $pref::Input::LinkMouseSensitivity; } - -function addKeyRemap(%name, %actionMap, %device, %command, %description) -{ - if(%name $= "" || - %actionMap $= "" || - %device $= "" || - %command $= "") - { - error("addKeybindRemap() - tried to add a remap entry, but didn't have all the keeded info!"); - return; - } - - $RemapName[$RemapCount] = %name; - $RemapCmd[$RemapCount] = %command; - $RemapActionMap[$RemapCount] = %actionMap; - $RemapDevice[$RemapCount] = %device; - $RemapDescription[$RemapCount] = %description; - $RemapCount++; -} \ No newline at end of file