Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix event responsiveness #53

Merged
merged 3 commits into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove Debug printing
Signed-off-by: Aleksander Kamiński <[email protected]>
  • Loading branch information
alek-kam-robotec-ai committed Sep 16, 2024
commit 493497b500c5bdeb7437b28bb5504202a6716f0b
5 changes: 0 additions & 5 deletions Code/Source/Entity/MeshEntityManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,4 @@ namespace RGL
}
}
}

void MeshEntityManager::OnMaterialPropertiesUpdated([[maybe_unused]] const AZ::Render::MaterialAssignmentMap& materials)
{
AZ_Printf(__func__, "Material properties updated");
}
} // namespace RGL
1 change: 0 additions & 1 deletion Code/Source/Entity/MeshEntityManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ namespace RGL

// AZ::Render::MaterialComponentNotificationBus implementation overrides
void OnMaterialsUpdated(const AZ::Render::MaterialAssignmentMap& materials) override;
void OnMaterialPropertiesUpdated([[maybe_unused]] const AZ::Render::MaterialAssignmentMap& materials) override;

AZStd::unordered_map<AZ::RPI::ModelMaterialSlot::StableId, size_t> m_materialSlotMeshIdMap;
};
Expand Down