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

Method unscheduleFixedUpdate

Source/Node/Node.cpp:866–873  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

864}
865
866void Node::unscheduleFixedUpdate() {
867 if (_flags.isOn(Node::FixedUpdating)) {
868 _flags.setOff(Node::FixedUpdating);
869 if (_updateItem && _updateItem->fixedScheduledItem && _updateItem->fixedScheduledItem->iter) {
870 _scheduler->unscheduleFixed(_updateItem->fixedScheduledItem.get());
871 }
872 }
873}
874
875bool Node::fixedUpdate(double deltaTime) {
876 return !isFixedUpdating();

Callers

nothing calls this directly

Calls 4

isOnMethod · 0.80
setOffMethod · 0.80
unscheduleFixedMethod · 0.80
getMethod · 0.65

Tested by

no test coverage detected