Search found 3 matches

by Realsphere
Tue Feb 14, 2023 9:25 am
Forum: General Bullet Physics Support and Feedback
Topic: Bullet Physics FPS Controller
Replies: 0
Views: 155131

Bullet Physics FPS Controller

So im using BulletSharp in my Project and I want to make a FPS Controller, i tried a lot but nothing worked.

I have a View Matrix using SharpDX.
by Realsphere
Sun Jan 22, 2023 3:52 pm
Forum: General Bullet Physics Support and Feedback
Topic: VHACD in BulletSharp
Replies: 0
Views: 157862

VHACD in BulletSharp

Howdy! Im using BulletSharp in my app with VHACD, now when i start my app and use VHACD to generate my Convex Hulls, i get a offset and my objects start floating around. i dont know why. This is my code: CompoundShape cs = new CompoundShape(); VHacdSharp.VHacd vhacd = new VHacdSharp.VHacd(); var res...
by Realsphere
Mon Jan 09, 2023 6:51 pm
Forum: General Bullet Physics Support and Feedback
Topic: Bullet World.Step causes 0xC000001D: Illegal Instruction (C# BulletSharp)
Replies: 0
Views: 155512

Bullet World.Step causes 0xC000001D: Illegal Instruction (C# BulletSharp)

So i am using BulletSharp in my project. This is the code i use to step it: if (settingScene) return; if ((float)simTime.Elapsed.TotalSeconds < time) { time = 0; timeStep = 0; } timeStep = ((float)simTime.Elapsed.TotalSeconds - time); time = (float)simTime.Elapsed.TotalSeconds; world.StepSimulation(...