fix build error

This commit is contained in:
Vadim Lopatin 2020-07-28 12:59:26 +03:00
parent 4508ad427f
commit 687027fe9c
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class Scene3d : Node3d {
bool visit(Node3d node, bool delegate(Node3d node) visitor) {
if (!node.visible)
return false;
bool res = false;
if (visitor(node))
return true;
foreach(child; node.children) {