servicepoint-tanks/tanks-backend/TanksServer/appsettings.json
2024-04-29 21:55:59 +02:00

41 lines
1,016 B
JSON

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"TanksServer": "Debug",
"Microsoft.AspNetCore.HttpLogging": "Information"
}
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://0.0.0.0:3000"
}
}
},
"ServicePointDisplay": {
"Hostname": "172.23.42.29",
"Port": 2342
},
"GameRules": {
"DestructibleWalls": true,
"PowerUpSpawnChance": 0.2,
"MaxPowerUpCount": 5,
"BulletTimeoutMs": 20000,
"SpawnDelayMs": 3000,
"IdleTimeoutMs": 30000,
"MoveSpeed": 40,
"TurnSpeed": 0.5,
"ShootDelayMs": 450,
"BulletSpeed": 75,
"SmartBulletHomingSpeed": 1.5
},
"Host": {
"EnableServicePointDisplay": true,
"ServicePointDisplayMinFrameTimeMs": 28,
"ClientScreenMinFrameTime": 5
}
}