├── .github └── FUNDING.yml ├── .gitignore ├── License.txt ├── Readme.md ├── Screenshots ├── Gearbox.png ├── PadGamepad.png ├── PadKeyboard.png ├── Speed.png └── Wheels.png ├── Source ├── Dashboard.as ├── ForeverLastInputHook.as ├── Main.as ├── Pads │ ├── Gamepad.as │ └── Keyboard.as ├── Settings.as ├── SettingsGradient.as ├── SettingsWidgets.as ├── Thing.as └── Things │ ├── Acceleration.as │ ├── Clock.as │ ├── Gearbox.as │ ├── PadHost.as │ ├── Speed.as │ └── Wheels.as └── info.toml /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: [openplanet] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/License.txt -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Readme.md -------------------------------------------------------------------------------- /Screenshots/Gearbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Screenshots/Gearbox.png -------------------------------------------------------------------------------- /Screenshots/PadGamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Screenshots/PadGamepad.png -------------------------------------------------------------------------------- /Screenshots/PadKeyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Screenshots/PadKeyboard.png -------------------------------------------------------------------------------- /Screenshots/Speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Screenshots/Speed.png -------------------------------------------------------------------------------- /Screenshots/Wheels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Screenshots/Wheels.png -------------------------------------------------------------------------------- /Source/Dashboard.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Dashboard.as -------------------------------------------------------------------------------- /Source/ForeverLastInputHook.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/ForeverLastInputHook.as -------------------------------------------------------------------------------- /Source/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Main.as -------------------------------------------------------------------------------- /Source/Pads/Gamepad.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Pads/Gamepad.as -------------------------------------------------------------------------------- /Source/Pads/Keyboard.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Pads/Keyboard.as -------------------------------------------------------------------------------- /Source/Settings.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Settings.as -------------------------------------------------------------------------------- /Source/SettingsGradient.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/SettingsGradient.as -------------------------------------------------------------------------------- /Source/SettingsWidgets.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/SettingsWidgets.as -------------------------------------------------------------------------------- /Source/Thing.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Thing.as -------------------------------------------------------------------------------- /Source/Things/Acceleration.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Things/Acceleration.as -------------------------------------------------------------------------------- /Source/Things/Clock.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Things/Clock.as -------------------------------------------------------------------------------- /Source/Things/Gearbox.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Things/Gearbox.as -------------------------------------------------------------------------------- /Source/Things/PadHost.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Things/PadHost.as -------------------------------------------------------------------------------- /Source/Things/Speed.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Things/Speed.as -------------------------------------------------------------------------------- /Source/Things/Wheels.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/Source/Things/Wheels.as -------------------------------------------------------------------------------- /info.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codecat/tm-dashboard/HEAD/info.toml --------------------------------------------------------------------------------