You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes it is useful to slow down the game and look at the decisions the bot is making however the game is always really fast.
Probably we should make a configurable gamespeed parameter in BotConfig.txt similar to the original game (i.e. fast, very fast).
Currently I don't know how that should be done in a proper way. The following approach works for me:
while (coordinator.Update()) {
// Slow down game speed for better look & feel while making experiments.sc2::SleepFor(15);
}
Probably higher step value will do the same?
The text was updated successfully, but these errors were encountered:
Sometimes it is useful to slow down the game and look at the decisions the bot is making however the game is always really fast.
Probably we should make a configurable gamespeed parameter in BotConfig.txt similar to the original game (i.e. fast, very fast).
Currently I don't know how that should be done in a proper way. The following approach works for me:
Probably higher step value will do the same?
The text was updated successfully, but these errors were encountered: