Jakob Schikowski
Jakob Schikowski
Thanks! This code compiles and solves the problem: ```rust use bevy::prelude::*; use heron::{ prelude::*, rapier_plugin::{convert::IntoRapier, rapier2d::prelude::RigidBodySet, RigidBodyHandle}, }; #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Component)] pub enum Ccd { Disabled,...
Can I help by creating a PR?
I'm in no hurry, I'll do it within the next days.
@ggreif `rand_core` was recently removed from the interface, see #265. I didn't want to discuss this in this issue, I just wanted a replacement. If elegance doesn't matter, you could...
Would it be ok to use a single-purpose crate for the array initialization? [array_init](https://github.com/Manishearth/array-init) allows to initialize the array using a closure and also fixes the memory leak.
> So when it comes to the leak-on-panic, I think it would only be able to happen when calling T::arbitrary(). Almost certainly, a panic inside of an arbitrary() impl is...
My use case: Checking for unexpected characters after pasting text from the internet. The statusline would be more convient because I can simply move the cursor while looking at the...
@BurntSushi Some questions: - I called the new constructor `Gen::from_seed`. Is that okay? Or maybe `Gen::from_seed_u64`? - You regret the current constructor `Gen::new` because it takes a size parameter. Should...
Yes, `drain_filter` would work for me. In some cases I need the ownership of the removed elements and that's also possible with `drain_filter`. Though it's unstable and the name and...
Personally if I want to create an instance of type `Foo` I look at the documentation of `Foo`. Ideally there is an example that I can copy+paste. But a small...