Doonv
Doonv
Can you add inverted versions of the arrow characters? (Specifically `e0b0` and `e0b2`). Because I want something like this:  What you see above is using inverted colors, and it...
Closes #4. This PR adds a script that generates a README with a table containing all the scripts in the repo. Basically what is does is use a template to...
I like the highlighting of this extension. But there's no autocomplete which is annoying. I haven't made a vscode extension so I don't know how this works but would it...
# Objective I'm working on a developer console plugin, and I wanted to get a field/index of a struct/list/tuple. My command parser already parses member expressions and all that, so...
## What problem does this solve or what need does it fill? Currently if you use the `once!` macro for logging something once, it will only log once. This is...
# Objective Fix https://github.com/bevyengine/bevy/issues/11577. ## Solution Fix the examples, add a few constants to make setting light values easier, and change the default lighting settings to be more realistic. (Now...
# Objective I wanted to pass in a `String` to `DynamicStruct::insert_boxed` but it took in a &str. That's fine but I also saw that it immediately converted the `&str` to...
# Objective Improve compile times. ## Solution The `-Z threads=0` option has been introduced into nightly rust somewhat recently, and was showcased in this [rust-lang article](https://blog.rust-lang.org/2023/11/09/parallel-rustc.html). This option improves multithreading...
# Objective - Fix https://github.com/bevyengine/bevy/issues/11453. - Fix https://github.com/bevyengine/bevy/issues/7332. ## Solution I created a `plugin_group!` macro that takes in a list of `Plugin`s and then generates a `PluginGroup` along with it's...