Andrew Bentley
Andrew Bentley
Implements the ideas suggested in issue #1 It should be noted that this changes the behaviour of `size` and `position` attributes so that they return normalized or un-normalized values depending...
I'll start with a quick example: ``` python frame = bgui.Frame(self) frame.size = [0.5, 0.5] # Normalized values in print(frame.size) # Non-normalized values out ``` The above shows some unexpected...
From the discussion in #553 I also updated the client/server example to use `try_clone` instead of `Arc`, as well as added a small test.
### Description Running the `window` example and pressing CTRL+C to cycle through the available cursors reveals that not all cursors can be displayed. When a cursor cannot be displayed the...