Beatsaber Rust Utilities: A Beatsaber V3 parsing library.
beatsaber beatmap
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at dev 30 lines 1.1 kB view raw view rendered
1# Beatsaber Rust Utilities (BSRU) 2 3[![Version](https://img.shields.io/crates/v/bsru)](https://crates.io/crates/bsru) 4[![Docs](https://img.shields.io/docsrs/bsru)](https://docs.rs/bsru) 5![License](https://img.shields.io/crates/l/bsru) 6 7A Beatsaber V3 parsing library. 8 9## Status 10 11This project should support info file version `2.X` and difficulty file version `3.X`. 12Modded features such as custom data are not currently supported. 13 14There are also some experimental methods to help with lighting calculations. 15These do not currently support all features and are marked as depreciated. 16 17## Feature Flags 18 19| Flag | Description | 20|----------------|--------------------------------------------------------------------------| 21| `bevy_color` | Adds `From` implementations for converting color schemes to Bevy colors. | 22| `bevy_reflect` | Adds `Reflect` derives for all types. | 23 24### Bevy Version Compatibility 25 26| Bevy | BSRU | 27|--------|---------------| 28| `0.18` | `0.7`+ | 29| `0.17` | `0.4` - `0.6` | 30| `0.16` | `0.1` - `0.3` |