Martin
Martin
I've been having the same issue, found out that the function PxSimulationFilterShader must also be set. However a variable sent to that function seems to be incorrectly set. ```cs [UnmanagedFunctionPointer(CallingConvention.Cdecl)]...
Potential solution? https://github.com/EmbarkStudios/physx-rs/issues/145 Would have to make this in rust however, change the default there which would be sub optimal.
Found it. I have On Contact working. (small code dump about what I did) Creating the callbacks: ```cs var simcallback = new SimulationEventCallbackInfo(); simcallback.collision_callback = (delegate* unmanaged[Cdecl])Marshal.GetFunctionPointerForDelegate(OnContactDelegateInstance).ToPointer(); var callbackinfoithink =...