servicepoint-tanks/TanksServer/appsettings.json

34 lines
619 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": {
2024-04-12 14:28:57 +02:00
"Enable": true,
2024-04-11 20:48:21 +02:00
"Hostname": "172.23.42.29",
"Port": 2342
},
"Tanks": {
"MoveSpeed": 1.4,
"TurnSpeed": 0.4,
"ShootDelayMs": 400,
"BulletSpeed": 3
2024-04-11 20:48:21 +02:00
},
"Players": {
2024-04-12 14:28:57 +02:00
"SpawnDelayMs": 3000,
"IdleTimeoutMs": 30000
2024-04-11 20:48:21 +02:00
}
}