| 1288 | } |
| 1289 | |
| 1290 | void EntitySystemHelpersBase::PostUpdate() |
| 1291 | { |
| 1292 | OPTICK_EVENT(); |
| 1293 | if (!validated_ && GetEntityWorld() != nullptr) { |
| 1294 | ValidateMappedComponentSizes(); |
| 1295 | UpdateQueryCache(); |
| 1296 | validated_ = true; |
| 1297 | } |
| 1298 | |
| 1299 | if (CheckLevel == RuntimeCheckLevel::FullECS) { |
| 1300 | ValidateReplication(); |
| 1301 | } |
| 1302 | |
| 1303 | if (logging_) { |
| 1304 | DebugLogReplicationChanges(); |
| 1305 | } |
| 1306 | } |
| 1307 | |
| 1308 | void EntitySystemHelpersBase::OnInit() |
| 1309 | { |
no test coverage detected