34 lines
620 B
JSON
34 lines
620 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning",
|
|
"TanksServer": "Debug",
|
|
"Microsoft.AspNetCore.HttpLogging": "Information"
|
|
}
|
|
},
|
|
"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": 3
|
|
},
|
|
"Players": {
|
|
"SpawnDelayMs": 3000,
|
|
"IdleTimeoutMs": 30000
|
|
}
|
|
}
|