(mut self, rotation: f32)
| 46 | } |
| 47 | |
| 48 | pub fn rotation(mut self, rotation: f32) -> Self { |
| 49 | self.rotation = rotation; |
| 50 | self |
| 51 | } |
| 52 | |
| 53 | pub fn flip_x(mut self, flip: bool) -> Self { |
| 54 | self.flip.x = flip; |
nothing calls this directly
no outgoing calls
no test coverage detected