소스 검색

deleting extra character to fix typo

Signed-off-by: Guthrie Adams <[email protected]>
Guthrie Adams 1 년 전
부모
커밋
f1d6b81ec1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Gem/Code/Source/Components/OcclusionFilteredEntityComponent.cpp

+ 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];
                 }
                 });