oxrock
oxrock
After I do something like this: await self.do(unit.move(target.position)) That unit will never go back to being idle even after it's made it to the location. Currently I'm having to keep...
If a loadout generator script has been modified, the changes won't be recognized by the framework until the gui is restarted.
```Python self.badBoostLocation = Vector([0,0,0]) self.gameInfo = packet.game_info self.boosts = [] self.fieldInfo = self.get_field_info() for index in range(len(self.fieldInfo.boost_pads)): packetBoost = packet.game_boosts[index] fieldInfoBoost = self.fieldInfo.boost_pads[index] boostStatus = False if packetBoost.timer
I'm posting the error log from running a bot with only the sample code provided here: https://github.com/samuelpmish/RLUtilities/blob/master/python/examples/7_Aerial/agent.py This is using the python release rlutilities_1_0_2 and the unedited example aerial code...