| 1528 | } |
| 1529 | |
| 1530 | void Node::scheduleUpdateWithPriorityLua(int nHandler, int priority) |
| 1531 | { |
| 1532 | unscheduleUpdate(); |
| 1533 | |
| 1534 | #if AX_ENABLE_SCRIPT_BINDING |
| 1535 | _updateScriptHandler = nHandler; |
| 1536 | #endif |
| 1537 | |
| 1538 | _scheduler->scheduleUpdate(this, priority, !_running); |
| 1539 | } |
| 1540 | |
| 1541 | void Node::unscheduleUpdate() |
| 1542 | { |
no test coverage detected