| 114 | } |
| 115 | |
| 116 | void ComponentContainer::visit(float delta) |
| 117 | { |
| 118 | if (!_componentMap.empty()) |
| 119 | { |
| 120 | AX_SAFE_RETAIN(_owner); |
| 121 | for (auto&& iter : _componentMap) |
| 122 | { |
| 123 | iter.second->update(delta); |
| 124 | } |
| 125 | AX_SAFE_RELEASE(_owner); |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | void ComponentContainer::onEnter() |
| 130 | { |