Updates the state of the pointer for ply. Used to update scroll containers and for interactions functions.
(&mut self, position: Vector2, is_down: bool)
| 976 | /// Updates the state of the pointer for ply. |
| 977 | /// Used to update scroll containers and for interactions functions. |
| 978 | pub fn pointer_state(&mut self, position: Vector2, is_down: bool) { |
| 979 | self.context.set_pointer_state(position, is_down); |
| 980 | } |
| 981 | |
| 982 | /// Processes scroll containers using the current pointer state and scroll delta. |
| 983 | pub fn update_scroll_containers( |
nothing calls this directly
no test coverage detected