Przeglądaj źródła

deleting extra character to fix typo

Signed-off-by: Guthrie Adams <[email protected]>
Guthrie Adams 1 rok temu
rodzic
commit
f1d6b81ec1

+ 1 - 1
Gem/Code/Source/Components/OcclusionFilteredEntityComponent.cpp

@@ -70,7 +70,7 @@ namespace MultiplayerSample
                     const AZStd::vector<bool> visibility = occlusionHandler->GetOcclusionViewEntityToEntityVisibility(
                         m_occlusionViewName, controllerEntity.GetEntity()->GetId(), AZStd::vector<AZ::EntityId>{ entity->GetId() }
                     );
-                    // If the query succeeded and the entity cannot be seend then filter it out from network replication.
+                    // If the query succeeded and the entity cannot be seen then filter it out from network replication.
                     result = !visibility.empty() && !visibility[0];
                 }
                 });