servicepoint-tanks/tanks-backend/TanksServer/appsettings.json

42 lines
1 KiB
JSON
Raw Normal View History

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
2024-04-30 10:38:09 +02:00
"TanksServer": "Information",
"TanksServer.GameLogic.UpdatesPerSecondCounter": "Debug"
}
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
2024-04-21 14:34:45 +02:00
"Url": "http://0.0.0.0:3000"
}
}
},
"ServicePointDisplay": {
2024-05-13 01:23:34 +02:00
//"Hostname": "172.23.42.29",
"Hostname": "127.0.0.1",
"Port": 2342
},
"GameRules": {
2024-04-17 19:34:19 +02:00
"DestructibleWalls": true,
2024-04-29 21:52:50 +02:00
"PowerUpSpawnChance": 0.2,
"MaxPowerUpCount": 5,
"BulletTimeoutMs": 20000,
"SpawnDelayMs": 3000,
2024-04-19 13:37:28 +02:00
"IdleTimeoutMs": 30000,
2024-04-29 21:52:50 +02:00
"MoveSpeed": 40,
2024-04-19 13:37:28 +02:00
"TurnSpeed": 0.5,
"ShootDelayMs": 450,
2024-04-29 21:52:50 +02:00
"BulletSpeed": 75,
"SmartBulletHomingSpeed": 1.5
},
"Host": {
"EnableServicePointDisplay": true,
2024-04-19 13:37:28 +02:00
"ServicePointDisplayMinFrameTimeMs": 28,
"ClientScreenMinFrameTime": 5
2024-04-06 16:38:26 +02:00
}
}