servicepoint-tanks/TanksServer/appsettings.json

35 lines
795 B
JSON
Raw Normal View History

{
2024-04-13 18:35:36 +02:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"TanksServer": "Debug",
"Microsoft.AspNetCore.HttpLogging": "Information",
"TanksServer.GameLogic.RotateTanks": "Trace"
}
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:3000"
}
}
},
"ServicePointDisplay": {
"Enable": true,
"Hostname": "172.23.42.29",
"Port": 2342
},
"Tanks": {
"MoveSpeed": 1.5,
"TurnSpeed": 0.02,
"ShootDelayMs": 450,
"BulletSpeed":4
},
"Players": {
"SpawnDelayMs": 3000,
"IdleTimeoutMs": 30000
2024-04-06 16:38:26 +02:00
}
}