Andrea Catania

Results 23 issues of Andrea Catania

Hi @Zylann I'm writing you here because I want help you in order to speed up the process of implementing this new feature. Please let me know what you have...

Do you have plan to support Godot 4.0?

The concave shape collision algorithm executes an internal `AABB` check, to know which triangle worth to be checked: https://github.com/bulletphysics/bullet3/blob/cdd56e46411527772711da5357c856a90ad9ea67/src/BulletCollision/CollisionDispatch/btConvexConcaveCollisionAlgorithm.cpp#L79-L82 Due to precision loss, sometimes these `AABB` fails, so the contacts...

The example on this page is outdated: https://slide-rs.github.io/specs-website/docs/docs/0.10/specs/struct.FlaggedStorage.html ``` for (entity, _) in (&*entities, &comps.check()).join() { if true { // check whether this component should be modified. match comps.get_mut(entity) {...

bug

List of known remaining things to finish the physics implementation. - [ ] Rigid Body destruction - [ ] Shapes destruction - [ ] Pawn destruction - [x] Rigid body...

tracker

The crash is caused because the `ScriptInstances` inside `ScriptEcs` are cleared when the function `unregister_modules_types` is execute https://github.com/GodotECS/godex/blob/main/modules/godot/register_types.cpp#L156 However, at that time the scripts are already cleared out, and this...

bug
high priority
topic:godot_integration

The shape's gizmo doesn't update when changing value from inspector

bug
Junior Job
topic:editor

I was trying to use cylinder, but I was not able to do so because seems that the Cylinder shape doesn't implement the Shape Trait: ``` the trait `ncollide3d::shape::shape::Shape` is...

The RigidBodyDesc accept a reference to the colliders https://github.com/rustsim/nphysics/blob/master/src/object/rigid_body.rs#L727 The problem is that due to the lifetime used there is not possible to store the RigidBodyDesc in the heap and...

While checking the code today I saw that during the physical world creation is not possible to specify the various internal parts (like the collision detection algortim dispatcher, the broad...

enhancement
P-medium