Bullet World.Step causes 0xC000001D: Illegal Instruction (C# BulletSharp) #4416
pogrammerX
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
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(timeStep, 7);
Everything works fine as long as i only add BoxShapes, but as soon as i add a ConvexHullShape it starts crashing.
Beta Was this translation helpful? Give feedback.
All reactions