Jonah Henriksson
Jonah Henriksson
@djeedai I added a [section on how the internals work](https://github.com/JonahPlusPlus/bevy_atmosphere/tree/master/docs). If you could check it out and see if I need to clarify anything, that would be appreciated.
That's something I want to look into eventually, it's just not a priority right now. My idea for how it could look: - Procedural Backend - Stars are just simple...
You can do this by changing the `ray_origin` of `AtmosphereMat`. For example, changing swapping the Y and Z axis so it becomes (0, 0, 6372e3):  This changes...
It's back with #10
Some preliminary benchmarks (just to get a sense of where we are in performance before I make more changes): ``` [89c8a67] Trie::build() 10000 items time: [4.4129 ms 4.6616 ms 4.8854...
Making a note (in case feedback is needed): Right now I'm working on improving the usability of the search methods. Before they would return labels and their values, but with...
@shanecelis I'm considering dropping "postfix_search" in favor of changing: - "predictive_search" -> "after" (as in all exact matches that appear 'after' some node) - "common_prefix_search" -> "before" (as in all...
I did consider "predictive_search" -> "start_with" and "common_prefix_search" -> "prefixes_of", but that's when I was also considering "postfix_search" -> "suffixes_of". However, now I'm thinking I should just include all three...
A note for future work: Once a feature like specialization, general auto-traits + negative impls, or negative bounds is stabilized, it should be possible to merge `map::Trie` + `set::Trie` and...
Major regressions with the changes to search iterators when getting labels (before it used a unified iterator to accumulate many labels; now it runs it separately per label i.e. `.predictive_search(label)`...