Utility/Node: Translate comment

This commit is contained in:
SirLynix 2023-08-04 12:28:32 +02:00
parent b3ad0e3a06
commit c97bba71e7
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ namespace Nz
for (Node* child : m_childs)
{
// child->SetParent(nullptr); serait problématique car elle nous appellerait
// child->SetParent(nullptr); would try to remove itself from the child list while we iterate on it
child->m_parent = nullptr;
child->InvalidateNode(Invalidation::InvalidateRecursively);
child->OnParenting(nullptr);