(c)
| 792 | |
| 793 | |
| 794 | def do_destroy(c): |
| 795 | |
| 796 | c.crowd_service.acquire_destroy_list() |
| 797 | destroy_list = c.crowd_service.destroy_list |
| 798 | c.crowd_service.destroy_list = [] |
| 799 | c.crowd_service.release_destroy_list() |
| 800 | |
| 801 | commands = [carla.command.DestroyActor(x) for x in destroy_list] |
| 802 | |
| 803 | c.client.apply_batch_sync(commands) |
| 804 | c.world.wait_for_tick(1.0) |
| 805 | |
| 806 | |
| 807 | def pull_new_agents(c, car_agents, bike_agents, pedestrian_agents, statistics): |
no test coverage detected