servicepoint-tanks/TanksServer/appsettings.json

33 lines
592 B
JSON
Raw Normal View History

{
2024-04-11 20:48:21 +02:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"TanksServer": "Debug",
"Microsoft.AspNetCore.HttpLogging": "Information"
2024-04-06 16:38:26 +02:00
}
2024-04-11 20:48:21 +02:00
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:3000"
}
}
},
"ServicePointDisplay": {
"Enable": false,
"Hostname": "172.23.42.29",
"Port": 2342
},
"Tanks": {
"MoveSpeed": 1.4,
"TurnSpeed": 0.4,
"ShootDelayMs": 400,
"BulletSpeed": 8
},
"Players": {
"SpawnDelayMs": 3000
}
}