0x0046FF54
| 167 | |
| 168 | // 0x0046FF54 |
| 169 | void resetSpatialIndex() |
| 170 | { |
| 171 | // Clear existing array |
| 172 | std::fill(std::begin(_entitySpatialIndex), std::end(_entitySpatialIndex), EntityId::null); |
| 173 | |
| 174 | // Original filled an unreferenced array at 0x010A5A8E as well then overwrote part of it??? |
| 175 | |
| 176 | // Refill the index |
| 177 | for (auto& ent : entities()) |
| 178 | { |
| 179 | insertToSpatialIndex(ent); |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | // 0x0046FC57 |
| 184 | void updateSpatialIndex() |
no test coverage detected