Add function to get navigation link iteration id from NavigationServer

Adds function to get navigation link iteration id from NavigationServer.
This commit is contained in:
smix8
2025-04-25 20:48:25 +02:00
parent 931820d33c
commit b002ade3ed
16 changed files with 54 additions and 0 deletions

View File

@ -141,6 +141,10 @@ bool NavLink3D::is_dirty() const {
}
void NavLink3D::sync() {
if (link_dirty) {
iteration_id = iteration_id % UINT32_MAX + 1;
}
link_dirty = false;
}