You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first if statement in the following code snippet (in file ssBVH_Node.cs)
// perform the best rotation...
if (bestRot.rot != Rot.NONE) {
// if the best rotation is no-rotation... we check our parents anyhow..
if (parent != null) {
// but only do it some random percentage of the time.
if ((DateTime.Now.Ticks % 100) < 2) {
bvh.refitNodes.Add(parent);
}
}
} else {
// ...
}
should be replace by the following line of code???
if (bestRot.rot == Rot.NONE) {
The text was updated successfully, but these errors were encountered:
That's very peculiar... as it would seem like this bug would cause it to hardly ever perform a rotation. I'm going to have to look more carefully at the code, but that if-condition does seem most likely wrong.
The first if statement in the following code snippet (in file ssBVH_Node.cs)
should be replace by the following line of code???
The text was updated successfully, but these errors were encountered: