servicepoint-tanks/TanksServer/appsettings.json

40 lines
982 B
JSON
Raw Normal View History

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"TanksServer": "Debug",
"Microsoft.AspNetCore.HttpLogging": "Information"
}
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://localhost:3000"
}
}
},
"ServicePointDisplay": {
"Hostname": "172.23.42.29",
"Port": 2342
},
"GameRules": {
2024-04-17 19:34:19 +02:00
"DestructibleWalls": true,
2024-04-17 20:12:36 +02:00
"PowerUpSpawnChance": 0.1,
2024-04-19 13:37:28 +02:00
"MaxPowerUpCount": 15,
"BulletTimeoutMs": 30000,
"SpawnDelayMs": 3000,
2024-04-19 13:37:28 +02:00
"IdleTimeoutMs": 30000,
"MoveSpeed": 37.5,
"TurnSpeed": 0.5,
"ShootDelayMs": 450,
"BulletSpeed": 75
},
"Host": {
"EnableServicePointDisplay": true,
2024-04-19 13:37:28 +02:00
"ServicePointDisplayMinFrameTimeMs": 28,
"ClientScreenMinFrameTime": 5
2024-04-06 16:38:26 +02:00
}
}