I move a sphere towards to another sphere and suddenly the sphere is stop from moving so far away from another scene. Why does it happen? Playground here
So it looks like all the creating objects have its own Ellipsoid in time of its creating? I’ve just created sphere_1 and it already has an Ellipsoid while I didn’t even add it, without even setting checkingCollisions to true!
So those Ellipsoids move every frame with every object? Is it good practice to disable those ellipsoids to stop it from moving if we don’t need them? Isn’t it some sort of overhead if we don’t need collisions? For static objects, for instance.
You can set an ellipsoid to null on fixed objects, but the animate object must have one, otherwise the animation no longer happens.
Ellipsoids do not create overhead, if no collision checking is done.