/
elite-ger
/
luaf
Обзор
Документация
Войти
/
elite-ger
/
luaf
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
modules/input.lua
34 строки
522 B
Elite
Hello!
26 июн 2026, 19:07
26 июн 2026, 19:07
2b5046d
Код
Авторство
О чём код?
local input = {} input.MousePosition = Vector2.new(0, 0) input.MouseDelta = Vector2.new(0, 0) input.MouseWheel = 0 function input:IsKeyDown(key) return false end function input:IsKeyPressed(key) return false end function input:IsKeyReleased(key) return false end function input:IsMouseDown(button) return false end function input:OnKeyPressed(callback) end function input:OnKeyReleased(callback) end function input:OnMouseMoved(callback) end function input:OnMouseButton(callback) end return input