* Converted tabs to spaces for consistency
* Added default space_reset binding as space_drag's double click variant for all controllers
* Fixed duplicate space_resets
* try adding config to load different sound
looks like include_bytes!() doesn't take a variable parameter, so will need a different solution lol.
* no errors in loading, but toast.rs now has a lifetime issue
* hey, config toast sound works now!
the sound is loaded in AppState now, since Toast are created in several different places at different times, and i don't want to load the sound every time a toast is made.
also put back the original sound since i accidentally commited my custom one.
* clean up
* change custom toast sound leak to happen on load rather than every play
* move toast sound loading into a function
so it can be reused in the future, for example if we want to load arbitrary keypress sounds or other [u8] data.
* remove label from try_load_bytes, return early when failing
* Switch to HiResScroll. Add horizontal scrolling
* Fix OpenVR compilation for horizontal scrolling
* fix OpenXR scroll using x axis for both scroll axes
* osc: start adding osc buttons
a button action that sends an osc parameter.
struggling with borrows in openxr.rs and openvr.rs when getting the osc sender.
* osc: fix osc sender buttons
by passing a ref to the device list to send_params instead of the entire app state.
* osc: fix warnings
* osc: conditionally use OscSender crate in state.rs
* osc: fix button.rs compile errors without osc/wayvr features
* osc: add other types: int, bool, string. play thump noise when sent.
* osc: fix build without osc feature
i just want to use OscType directly, but since it doesn't derive serde::Deserialize, i can't just have one OscType action or list of actions...
* merge typed actions to one action, support multiple values.
i added a new struct OscValue that has Deserialize, and now the action just converts that to the corresponding OscType when sending the parameters.
perhaps not the most elegant solution, but it's the best i can think of without modifying the rosc crate.
* run `cargo fmt`