Binds a callback to a planar motion action (mouse movement).
(self, callback)
| 265 | return key_binding |
| 266 | |
| 267 | def bind_plane(self, callback): |
| 268 | """Binds a callback to a planar motion action (mouse movement).""" |
| 269 | self._plane_callback.append(callback) |
| 270 | |
| 271 | def bind_z_axis(self, callback): |
| 272 | """Binds a callback to a z-axis motion action (mouse scroll).""" |
no outgoing calls