(self)
| 508 | self.texture.height -= 1 |
| 509 | |
| 510 | def load_img(self): |
| 511 | if self.texture_path: |
| 512 | self.texture = png.Png(self.texture_path, "") |
| 513 | if self.normal_map_path: |
| 514 | self.normal_map = png.Png(self.normal_map_path, "") |
| 515 | |
| 516 | |
| 517 |
nothing calls this directly
no outgoing calls
no test coverage detected