Shane Celis
Shane Celis
> From my tests, it was going from something like 6ms to 80ms for predictive search, so more than 10x slower. (In hindsight, I should have led with discussing how...
> * `starts_with` -> `descendants` > * `prefixes_of` -> `prefixes` or `ancestors` > * `suffixes_of` -> `suffixes` > * `starts_with_pairs` -> `descendant_pairs` > * `prefixes_of_pairs` -> `prefix_pairs` or `ancestor_pairs` >...
The proposed feature `[target.'cfg(target_arch = "wasm32")'.lib]` is exactly what I tried when facing a similar problem in the hopes that Cargo worked like that; it didn't, but let this comment...
That would be great! I've got a branch that contains some of the easy [bevy-0.14 grunt work](https://github.com/shanecelis/bevy_mod_scripting/tree/bevy-0.14). The last commit there can probably be dropped. You're very welcome. I think...
Here are some screenshots of the viewer and the cone with and without the normal fix.  
Thanks for looking it over. I'll consider adding a PR to bevy with a "genmesh" feature. It's really the orphan rules that force this kind of feature to live in...
The list-fonts example works. ```sh > cargo run --example list-fonts | wc -l 1593 ```
I did track down the issue. I had an extra Arial font file located in ~/Library/Fonts that the parser did not like. I removed that, and everything appears to be...
[Arial.zip](https://github.com/servo/font-kit/files/14357626/Arial.zip) Here is the font file that was causing the issue. It looks like it's one of those weird files with a resource fork because it's empty according to the...
Thank you. That's helpful to know. Hmm, I may not have added that plugin. I was trying to do it without taking in the whole Bevy Lua API. I'll try...