I'm making a pinball game with a rigid body as ball, static table and kinematic flippers.
Using a spherical collision shape for the ball, concave polygon for the table and convex for flippers (why is it said not to use concave for kinematic bodies?)
The ball rolls perfectly on the table, but when it comes to flippers it looks like the ball is hovering over them not touching the meshes, as if collision shapes of flippers are bigger than meshes (though in editor they have the same size), the ball doesn't even fall between the flippers, however the distance between them is greater than the size of the ball. The same happens if i change flippers' type to rigidbody and set it to kinematic mode.
P.s. tried to switch to godot physics, but then the ball acts totally crazy like passing through objects or getting stuck inside a flipper
P.s. What really helps is replacing a convex collision polygon with concave one, but Godot warns that concave is "not supported to be kinematic". Why is that so, what are the drawbacks of this method?