Updated Toy after a bugfix
This commit is contained in:
2
Toy
2
Toy
Submodule Toy updated: 1481216e69...2157b2f540
@@ -130,14 +130,21 @@ fn depthComparator(lhs: opaque, rhs: opaque) { //for sorting by depth
|
|||||||
var lhsPos = lhs.callNodeFn("getRealPos");
|
var lhsPos = lhs.callNodeFn("getRealPos");
|
||||||
var rhsPos = rhs.callNodeFn("getRealPos");
|
var rhsPos = rhs.callNodeFn("getRealPos");
|
||||||
|
|
||||||
|
var result = null;
|
||||||
|
|
||||||
if (lhsPos[1] == rhsPos[1]) { //BUGFIX: prevent z-fighting
|
if (lhsPos[1] == rhsPos[1]) { //BUGFIX: prevent z-fighting
|
||||||
if (lhsPos[0] == rhsPos[0]) {
|
if (lhsPos[0] == rhsPos[0]) {
|
||||||
return true;
|
result = true;
|
||||||
}
|
}
|
||||||
return lhsPos[0] < rhsPos[0];
|
else {
|
||||||
|
result = lhsPos[0] < rhsPos[0];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
result = lhsPos[1] < rhsPos[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
return lhsPos[1] < rhsPos[1];
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
fn getCameraPos(node: opaque) {
|
fn getCameraPos(node: opaque) {
|
||||||
|
|||||||
Reference in New Issue
Block a user