Zicklag
Zicklag
If I understand that right, that sounds pretty neat! Would it allow me to do this? ```rust // I have `Schedule` type that implements `Display` and `FromStr`. #[derive(Serialize, Deserialize)] struct...
I might be interested in contributing for this if it's something you guys are interested in.
Oh, good idea, I didn't think of using trait objects! I think I'll try that out if I get the chance and open a PR if it looks like it...
No I didn't, and I probably won't end up being able to any time soon, though it's still something I'd like to come back to eventually.
Regarding the hello world example, that's a good point, and I can't remember why I removed it! :) Actually, though, bevy regrograde is is not under active development any more....
So my use-case is actually a little different than @johanhelsing. In my use-case, I'm using a QUIC connection from the `quinn` crate to implement `NonBlockingSocket`, and it only requires a...
To profile, you can open the dev tools in Firefox, go to the performance tab, and start recording. For me the gameplay seems somewhat smooth, but the sound playback is...
My gut reaction is that you *shouldn't* allow something like this because quirks like that that you aren't expecting could lead to bugs. This would be an opportunity to accidentally...
Sorry I can't help with this more, but the only guidance I can give is to check out the [Haxebullet](https://github.com/armory3d/haxebullet) bindings and comb through that to see if there is...
Hmm, maybe you can search the [Armory](https://github.com/armory3d/armory) source code to see if it uses that function and how it passes the array?