override me
| 1633 | |
| 1634 | // override me |
| 1635 | void Node::update(float fDelta) |
| 1636 | { |
| 1637 | #if AX_ENABLE_SCRIPT_BINDING |
| 1638 | if (0 != _updateScriptHandler) |
| 1639 | { |
| 1640 | // only lua use |
| 1641 | SchedulerScriptData data(_updateScriptHandler, fDelta); |
| 1642 | ScriptEvent event(kScheduleEvent, &data); |
| 1643 | ScriptEngineManager::sendEventToLua(event); |
| 1644 | } |
| 1645 | #endif |
| 1646 | |
| 1647 | if (_componentContainer && !_componentContainer->isEmpty()) |
| 1648 | { |
| 1649 | _componentContainer->visit(fDelta); |
| 1650 | } |
| 1651 | } |
| 1652 | |
| 1653 | // MARK: coordinates |
| 1654 |
no test coverage detected