MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / removeFromWaitingList

Method removeFromWaitingList

Source/Basic/Director.cpp:536–541  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

534}
535
536void Director::removeFromWaitingList(Node* node) {
537 _waitingList.erase(std::remove_if(_waitingList.begin(), _waitingList.end(), [node](const auto& wref) {
538 return wref == node;
539 }),
540 _waitingList.end());
541}
542
543bool Director::isInFrustum(const AABB& aabb) const {
544 if (_viewProjs.empty()) return false;

Callers 1

addChildMethod · 0.80

Calls 3

eraseMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected