(self, clock)
| 912 | self.spawned_hero = self.hero_actor |
| 913 | |
| 914 | def tick(self, clock): |
| 915 | actors = self.world.get_actors() |
| 916 | self.actors_with_transforms = [(actor, actor.get_transform()) for actor in actors] |
| 917 | if self.hero_actor is not None: |
| 918 | self.hero_transform = self.hero_actor.get_transform() |
| 919 | self.update_hud_info(clock) |
| 920 | |
| 921 | def update_hud_info(self, clock): |
| 922 | hero_mode_text = [] |
nothing calls this directly
no test coverage detected