From 03171fee54b5e7f71160ba60c6c05d03d8c88246 Mon Sep 17 00:00:00 2001 From: Chris Santora Date: Tue, 15 Jun 2021 12:17:44 -0700 Subject: [PATCH] Updated AssetInitBus comments. --- Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AssetInitBus.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AssetInitBus.h b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AssetInitBus.h index 8f49aec929..e8a1d69ece 100644 --- a/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AssetInitBus.h +++ b/Gems/Atom/RPI/Code/Include/Atom/RPI.Public/AssetInitBus.h @@ -21,6 +21,8 @@ namespace AZ //! Bus for post-load initialization of assets. //! Assets that need to do post-load initialization should connect to this bus in their asset handler's LoadAssetData() function. //! Be sure to disconnect from this bus as soon as initialization is complete, as it will be called every frame. + //! (Note this bus is needed rather than utilizing TickBus because TickBus is not protected by a mutex which means it can't be + //! connected on an asset load job thread). class AssetInitEvents : public EBusTraits {