fixed gear number for beamng

This commit is contained in:
Seth Samuel 2024-12-16 11:23:58 +13:00
parent bd1e361446
commit 077b123620
3 changed files with 19 additions and 1 deletions

17
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "echo",
"type": "shell",
"command": "echo Hello"
},
{
"label": "build exe windows",
"type": "shell",
"command": "pyinstaller.exe --add-data .\\GAME_METHODS\\*:.\\GAME_METHODS\\ --onefile --noconsole --optimize 2 .\\OutGaugeInterpreter.py"
}
]
}